FIX: AV Declaring a Cursor Involving Conversion to BitLast reviewed: April 9, 1997Article ID: Q155182 |
The information in this article applies to:
SYMPTOMSIf you declare a non-insensitive cursor, which involves selecting a value converted to the bit datatype, a handled Access Violation occurs.
WORKAROUNDDo not convert to the bit datatype or declare the cursor as INSENSITIVE.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.5. This problem has been corrected in U.S. Service Pack 2 for Microsoft SQL Server version 6.5. For more information, contact your primary support provider.
MORE INFORMATIONThe following script can cause a handled access violation: create table X (C1 bit not null) go declare X_cursor cursor for select convert(bit, 0) from Xgo
|
Additional query words: AV SCROLL READ ONLY UPDATE OF
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |