BUG: 2nd Insert Statement Fails On a Recreated Table in Excel

Last reviewed: December 16, 1996
Article ID: Q141809
The information in this article applies to:
  • Microsoft Open Database Connectivity, version 3.40

BUG#: 2399 (QJET)

SYMPTOMS

If a Microsoft Excel worksheet is deleted before dropping the table in the worksheet, the following error occurs on the second insert into a created table of the same name as the deleted table:

   [Microsoft][ODBC Excel Driver] Can't expand named range.

WORKAROUND

If the table is dropped using the SQL statement "drop table table_name" before the worksheet is deleted, then every thing works fine.

STATUS

Microsoft has confirmed this to be a problem in the Excel ODBC Driver version 3.40.2225. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to reproduce this problem in 32-bit ODBC Test:

  1. In Microsoft Excel, create an empty workbook (.xls) file.
2. Create a datasource pointing to this Microsoft Excel workbook (clear the 3. Read Only option in the ODBC Excel datasouce Setup). 4. FullConnect to a Excel datasource (.xls). 5. SQLExecdirect is used to execute the following SQL Statements:
      CREATE TABLE oof (with two fields of any datatype)
      insert into oof values(..data..)
      insert data oof values(..data..)
6. Fulldisconnect

  1. In Microsoft Excel, open the workbook and delete the sheet that has the created table(appended at the end) and save the workbook.

  2. Fullconnect to the same Microsoft Excel datasource (.xls) file.
9. SQLExecdirect is used to execute the following SQL Statements:
      CREATE TABLE oof (with same table name and field names)
      insert into oof values (..data..)
      insert into oof values (..data..)

SQLExecDirect fails on the second insert with this error:

   Error:[Microsoft][ODBC Excel Driver]Can't expand named range


Additional reference words: 3.40.2225 ODBC Excel ODBC Driver
KBCategory: kbinterop kberrmsg kbbug3.40
KBSubcategory: odbc



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: December 16, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.