File option %hs is required in this CREATE/ALTER DATABASE statement.

Error Message:
Msg 1036, Level 15, State 1, Line 7
File option %hs is required in this CREATE/ALTER DATABASE statement.

Severity level:
15.

Description:
This error message appears when you try to issue a CREATE/ALTER DATABASE statement without specifying all required options.

Consequences:
The SQL statement cannot be parsed and further execution is stopped.

Resolution:
Error of the Severity Level 15 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. You must provide valid values for all options used in the CREATE/ALTER DATABASE statement.

Versions:
All versions of SQL Server.

Example(s):
CREATE DATABASE abc
ON PRIMARY
( NAME = abc_dat,
    SIZE = 1,
    MAXSIZE = 1,
    FILEGROWTH = 15%
 )

Remarks:
The CREATE/ALTER DATABASE command is full of optional parameters and option, which combinations make it sometimes necessary to provide adiitional information. In the above example we have specified the logical filename abc_dat. The specification of the logical filename makes the specification of the physical filename mandatory. Because this filename was not provided, the error is raised.

]]>

Leave a comment

Your email address will not be published.