Supportnet / Forum / Skripte(PHP,ASP,Perl...)
Fehlermeldung Microsoft Ole DB (ODBC) 80040e4d
Frage
Hallo an alle!!
Bin blutiger ASP - Anfänger und hoffe, dass mir einer von Euch weiterhelfen kann:
Folgende Fehlermeldung erhalte ich beim Aufrufen meiner ASP-Seiten im Web (Zuhause auf dem IIS 5 funzt es!)folgende Fehlermeldung:Microsoft OLE DB Provider for ODBC Drivers error 80040e4d
[Microsoft][ODBC Microsoft Access Driver] Too many client tasks.
/z/zaubermonster/diary.asp, line 5
Betreibssystem: W2000/IIS 5/Access 2000
Fehler erscheint beim Aufrufen aller ASP-Seiten als Beispiel für diary.asp:
<%@LANGUAGE="JAVASCRIPT"%>
<%
var Recordsetd = Server.CreateObject("ADODB.Recordset");
Recordsetd.ActiveConnection = MM_ConnZM_STRING;
Recordsetd.Source = "SELECT * FROM diary ORDER BY tb_ID DESC";
Recordsetd.CursorType = 0;
Recordsetd.CursorLocation = 2;
Recordsetd.LockType = 3;
Recordsetd.Open();
var Recordsetd_numRows = 0;
%>
<%
var Repeat1__numRows = 3;
var Repeat1__index = 0;
Recordsetd_numRows += Repeat1__numRows;
%>
Die "file="Connections/ConnZM.asp" lautet:
<%
// FileName="Connection_odbc_conn_dsn.htm"
// Type="ADO"
// HTTP="false"
// Catalog=""
// Schema=""
var MM_ConnZM_STRING = "dsn=zaubermonster_ODBC;"
%>
Würde mich über Eure Hilfe echt freuen, weil ich nciht mehr weiter weiß.

