Write for Us
Error Message:Msg 8197, Level 16, State 4, Procedure tt, Line 1The 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 are corrigible by the 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;GOIF OBJECT_ID('tempdb..t') > 0 DROP TABLE tGO CREATE TABLE t( id INT)GOCREATE TRIGGER dbo.tt ON taFOR INSERT ASSET 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.