SQL Server Create Database Script with All Options -- create database MyDatabase and specify physical file locations, initial physical file sizes, and autogrowth increments, change owner to sa, and set compatibility level to lower version CREATE DATABASE [MyDatabase] CREATE DATABASE [ MyDatabase ] ON ( NAME = N 'MyDatabase' , FILENAME = N 'C:\Program Files\Microsoft SQL Server\MSSQL14.SQL2017\MSSQL\DATA\MyDatabase.mdf' , SIZE = 1024 MB , FILEGROWTH = 256 MB ) LOG ON ( NAME = N 'MyDatabase_log' , FILENAME = N 'C:\Program Files\Microsoft SQL Server\MSSQL14.SQL2017\MSSQL\DATA\MyDatabase_log.ldf' , SIZE = 512 MB , FILEGROWTH = 125 MB ) GO -- change owner to sa ALTER AUTHORIZATION ON DATABASE ::[ MyDatabase ] TO [ sa ] GO -- set recovery model to simple ALTER DATABASE [ MyDatabase ] SET RECOVERY SIMPLE GO -- change compatibility level ALTER DATABASE [ MyDatabase ] SET COMPATIBILITY_LEVE...