Creation of temporary functions is not allowed.

Error Message:
Msg 1074, Level 15, State 1, Line 1
Creation of temporary functions is not allowed.

Severity level:
15.

Description:
This error message appears when you try to create a temporary function.

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 executed this way. You must use another valid object type.

Versions:
All versions of SQL Server.

Example(s):
CREATE FUNCTION #udfT ()
RETURNS INT
AS
BEGIN RETURN(1)
END;

Remarks:
In the above example we try to create a temporary function. This raises the error.

]]>

Leave a comment

Your email address will not be published.