The information in this article applies to:
SUMMARYThis article discusses how the Microsoft SQL Server ODBC Driver returns SET SHOWPLAN data to an application. MORE INFORMATION
SET SHOWPLAN is a proprietary Transact-SQL command for Microsoft SQL Server
that can be used to obtain information about the execution plans that SQL
Server builds for SQL statements. When this option is turned on in an ODBC
environment:
the showplan information will be returned through SQLError(). After SET SHOWPLAN has been turned on, SQLExecute() or SQLExecDirect() will both return SQL_SUCCESS_WITH_INFO on successful calls. The application can retrieve the showplan output by then looping through calls to SQLError() until SQLError() returns SQL_NO_DATA_FOUND. Each call to SQLError() will return one line of showplan data in the following format:
where the actual showplan output is the part of the szErrorMsg string that comes after the literal [SQL Server]. The calls to SQLError() must be made immediately after the SQLExecute() or SQLExecDirect() function call that generates the output. Additional query words: sql6 odbc debug
Keywords : kbenv kbinterop SSrvGen SSrvLAN |
Last Reviewed: March 23, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |