I want to create an SQL script that creates a database. Right now, I have this:
CREATE DATABASE [Documents] ON PRIMARY ( NAME = N\'Documents\', FILENAME = N\'
I believe that you can do
CREATE DATABASE [Documents]
without the ON .... and it will get created with defaults for path and the rest.