"%1!": Temporary views are not allowed.

Error Message:
Msg 4103, Level 15, State 1, Line 2
“%1!”: Temporary views are not allowed.

Severity level:
15.

Description:
This error message appears when you try to create a temporary view, analogue to a temporary table.

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. A temporary view cannot be created.

Versions:
This error message was introduced with SQL Server 2005. In SQL Server 2000 and below error 4508 is raised instead.

Example(s):
CREATE VIEW #v
AS
 SELECT *
   FROM Northwind.dbo.Orders

GO

Remarks:
Instead of a temporary view you should use a stored procedure, a temporary table, or a UDF that returns a table.

]]>

Leave a comment

Your email address will not be published.