Vardecimal storage format is not available in system database '%s'.

Error Message:
Msg 15657, Level 16, State 1, Procedure sp_db_vardecimal_storage_format, Line 65
Vardecimal storage format is not available in system database ‘%s’. Severity level:
16. Description:
This error message appears when you try to enable the vardecimal storage format on a system database. 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. You cannot enable the vardecimal storage format on a system database. Versions:
This error message was introduced with SQL Server 2005. Example(s):
EXEC sp_db_vardecimal_storage_format ‘tempdb’, ‘ON’ ;
GO Remarks:
In the above example we try to enable the vardecimal storage format on the tempdb database. This raises the error. ]]>

Leave a comment

Your email address will not be published.