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\'
You can create a database without specifying file details, like:
CREATE DATABASE Documents;