The object '%.*ls' does not exist or is invalid for this operation.

Error Message:
Msg 8197, Level 16, State 4, Procedure tt, Line 1
The object ‘%.*ls’ does not exist or is invalid for this operation.

Severity level:
16.

Description:
This error message appears when you try to execute an operation for a non-existant object or the operation is invalid for this type of object.

Consequences:
The T-SQL statement can be parsed, but causes the error at runtime.

Resolution:
Errors of the Severity Level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. The object must exist and the operation must be valid for this type of object.

Versions:
All versions of SQL Server.

Example(s):
USE tempdb;
GO
IF OBJECT_ID(‘tempdb..t’) > 0
 DROP TABLE t
GO
CREATE TABLE t
(
 id INT
)
GO
CREATE TRIGGER dbo.tt ON ta
FOR INSERT
AS
SET NOCOUNT ON;
IF @@ROWCOUNT > 0
 SELECT ‘something’
GO

Remarks:
In the above example we try to create a trigger for the table ta. Because this table does not exist, the error is raised.

]]>

Leave a comment

Your email address will not be published.