INF: Cursor Not Accept Temp Tables in ESQL for COBOL

Last reviewed: May 5, 1997
Article ID: Q80283

The information in this article applies to:

  - Microsoft SQL Server version 4.2 for OS/2
  - Microsoft SQL Server version 4.2

SUMMARY

When opening a cursor that is declared on an existing temporary table, the following error occurs:

   SQLCODE=-0000000208
   SQLERRD(1)=+0000000208
   SQLERRMC = Invalid object name '#tmp_table'.

To workaround this, create a permanent table rather than a temporary table, and drop the table before closing the current connection.

MORE INFORMATION

SQL Server does not allow the use of user-defined temporary tables in a cursor declaration. When using the nosqlaccess option during compile time, the query that corresponds to the cursor declaration is put in a plan file. When the open cursor statement is executed, the query is sent to the SQL Server dynamically, but SQL Server does not recognize the object. When the sqlaccess option is used, the error message occurs while compiling.


Additional query words: Windows NT
Keywords : kbprg SSrvCobol SSrvProg SSrvWinNT
Version : 4.2 | 4.2
Platform : OS/2 WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: May 5, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.