error '80020009' Exception occured or Microsoft OLE DB Provider for ODBC Drivers error '80020009' Errors occurred |
If you are using a MEMO, TEXT, or VARCHAR(>255), see
Article #2188.
ADODB.Field error '80020009' The object referenced by the application no longer points to a valid object. |
This can often happen if you reference a recordset object that was created on a different page, or in session scope. If the former, you will need to re-query the database for this recordset; if the latter, you should consider another plan for implementation... you should never store a recordset object in session scope (see
Aticle #2053).
Microsoft OLE DB Provider for ODBC Drivers error '80020009' Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done. |
See
Article #2288 for a lengthy description of this error message.
ADODB.Field error '80020009' Either BOF or EOF is True, or the current record has been deleted; the operation requested by the application requires a current record. or No current record. |
See
Article #2246 for more information about this error message.
Server object error 'ASP 0193 : 80020009' OnStartPage Failed /<file>.asp, line <line> An error occurred in the OnStartPage method of an external object. |
Article #2330 has some information about this error message.
DAO.Workspace error '80020009' ODBC--call failed. |
Try to avoid using DAO, if possible. DAO isn't highly recommended for use from ASP, even through a DLL.
Microsoft VBScript runtime error '80020009' Object required: '<object>' |
See
Article #2283 for more information about this message.
Microsoft Cursor Engine error '80020009' The data provider or other service returned an E_FAIL status. |
This could indicate an underlying problem with SQL Server, but is often an issue with the receiving script. Make sure you are connecting with OLEDB (see
Article #2126), have installed the latest MDAC (
MDAC Download Page), and have the latest Service Pack for SQL Server (see
Article #2151). For more information, see
KB #249638.
Server object error 'ASP 0177 : 80020009' Server.CreateObject Failed /<file>.asp, line <line> A call to Server.CreateObject Failed. The requested object instance can not be created. |
For more information on CreateObject failure, see
Article #2388.
CDONTS.NewMail.1 error '80020009' 451:SMTP server didn't terminate session or 501:SMTP server error or 503 Application Restarting. or No Recipients. |
First off, use CDO.Message instead (see
Article #2026, under 'Windows XP', for an explanation).
<component> error '80020009' Type mismatch |
Make sure any variables you are passing between ASP <-> component are declared as variants within the DLL...