BUG: Tablealias.Column in FOR UPDATE Causes Error 16928

Last reviewed: February 18, 1998
Article ID: Q181358
The information in this article applies to:
  • Microsoft SQL Server, version 6.5
BUG #: 17803 (6.5)

SYMPTOMS

If you precede a column name with the table alias in the FOR UPDATE clause of a cursor, cursor declaration will fail with the following error:

   Msg 16928, Level 16, State 3
   The column name 'au_lname' specified in the FOR UPDATE list is invalid
   or ambiguous.

The following example statements will demonstrate the problem:

   declare t1_cursor cursor for
   select au_id, au_lname
   from authors a1
   for update of a1.au_lname

WORKAROUND

To work around this problem, either remove the alias or prefix the column name with the table name.

STATUS

Microsoft has confirmed this to be a problem in SQL Server version 6.5. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


Additional query words:
Keywords : kbbug6.50 SSrvTran_SQL
Version : WINNT:6.5
Platform : winnt
Issue type : kbbug
Solution Type : kbworkaround


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