Browse mode is invalid for a statement that assigns values to a variable.

Error Message:
Msg 114, Level 15, State 1, Line 8
Browse mode is invalid for a statement that assigns values to a variable. Severity level:
15. Description:
This error message appears when you try to run a query that assigns values to a variable while being in browse mode. Consequences:
The SQL statement cannot be parsed and further execution is stopped. Resolution:
Error of the Severity level 15 are generated by the user and can be fixed by the SQL Server user. The statement cannot be run this way. You can run a query that assigns values to a variable in browse mode. Versions:
All versions of SQL Server. Example(s):
IF OBJECT_ID(‘dbo.t’) IS NOT NULL
    DROP TABLE dbo.t;
GO CREATE TABLE dbo.t
(
    c1 int
);
GO DECLARE @i int; SELECT
    @i = c1    
FROM
    dbo.t
FOR BROWSE; Remarks:
In the above example we try to run a query that assigns a value to a variable. This raises the query. ]]>

Leave a comment

Your email address will not be published.