Cannot use TEXTIMAGE_ON when a table has no text, ntext, image, varchar(max), nvarchar(max), varbinary(max), xml or large CLR type columns.

Error Message:
Msg 1709, Level 16, State 1, Line 1
Cannot use TEXTIMAGE_ON when a table has no text, ntext, image, varchar(max), nvarchar(max), varbinary(max), xml or large CLR type columns. Severity level:
16. Description:
This error message appears when you try to use the TEXTIMAGE_ON keyword in a CREATE TABLE statement, but the table in question has no large column data type. Consequences:
The T-SQL statement can be parsed, but causes the error at runtime. Resolution:
Error of the Severity level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be run this way. You must have at least one column of a large data type in your CREATE TABLE statement before you can use the TEXTIMAGE_ON keyword. Versions:
All versions of SQL Server. Example(s):
IF OBJECT_ID (‘dbo.t’) IS NOT NULL
    DROP TABLE dbo.t;
GO
CREATE TABLE dbo.t
(
    c1 int
) TEXTIMAGE_ON abc; Remarks:
In the above example we try to use the TEXTIMAGE_ON keyword in a CREATE TABLE statement. Because the table dbo.t does not have a column of a large data type, the error is raised. ]]>

Leave a comment

Your email address will not be published.