The data type or table column '%s' does not exist or you do not have permission.

Error Message:
Msg 15148, Level 16, State 1, Procedure sp_bindefault, Line 215
The data type or table column ‘%s’ does not exist or you do not have permission.

Severity level:
16.

Description:
This error message appears when you try to bind a via CREATE DEFAULT created default value to a non-existing column.

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 table and the column must exist before the default can be bound.

Versions:
All versions of SQL Server.

Example(s):
USE tempdb;
GO
IF OBJECT_ID(‘tempdb..#t’) > 0
 DROP TABLE #t
GO
IF OBJECT_ID(‘MyDefault’) > 0
 DROP DEFAULT MyDefault;
GO
CREATE TABLE #t
(
 c1 TIMESTAMP IDENTITY NOT NULL
)
GO
CREATE DEFAULT MyDefault AS 42;
Go
EXEC sp_bindefault ‘MyDefault’, ‘#t.c1’;

Remarks:
In the above example we try to bind the default MyDefault to the column c1 of the table #t. Because the CREATE TABLE statement raises the error 2749, the table cannot be created. The then following sp_bindefault call raises the error.

]]>

Leave a comment

Your email address will not be published.