Microsoft Knowledge Base |
|
MSQuery: Unable to Delete Multiple Indices |
|
|
Last reviewed: September 12, 1996
Article ID: Q113214 |
|
The information in this article applies to:
SUMMARYIt is not possible to delete multiple indices from a dBASE data source with a single SQL statement. This is by design. The SQL language does not support more than one delete statement in the same SQL statement. For example, the following statement will return a syntax error:
drop index table.index1,table.index2 WORKAROUNDTo work around this problem, delete only one index per SQL statement at any one time. For example the following two separate SQL statements replace the SQL statement above and will work correctly:
drop index table.index1 drop index table.index2 |
|
KBCategory: kbusage kb3rdparty
©1997 Microsoft Corporation. All rights reserved. Legal Notices. |