FIX: Create View with Nested SELECT in CASE Causes Error 206

Last reviewed: November 7, 1997
Article ID: Q156292
The information in this article applies to:
  • Microsoft SQL Server, version 6.5
BUG #: 15817 (6.50)

SYMPTOMS

If you create a view with a CASE statement, and one or more of the result expressions is a SELECT statement, the following error may occur:

   Msg 206, Level 16, State 2
   Operand type clash: UNKNOWN TOKEN is incompatible with varchar

WORKAROUND

Use the CONVERT function to convert the result of the SELECT statement to the same datatype as the other result expressions.

STATUS

Microsoft 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 INFORMATION

The following is an example of a CREATE VIEW command that will cause the error:

   CREATE VIEW select_in_case AS
   SELECT CASE
      WHEN 1=0 THEN "false"
      ELSE (SELECT "true")
      END "result"

To resolve the error, rewrite the query as:

   CREATE VIEW select_in_case AS
   SELECT CASE
      WHEN 1=0 THEN "false"
      ELSE CONVERT(varchar(255),(SELECT "true"))
      END "result"


Additional query words:
Keywords : kbbug6.50 kbfix6.50.sp2 SSrvErr_Log kbusage
Version : 6.5
Platform : WINDOWS


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