1> --single: 'True' ensures only one user has access to the database at a time. Any subsequent users will be refused.2>3> CREATE DATABASE myDatabase4> EXEC sp_dboption 'myDatabase', 'single', 'False'5> GO1>2> Drop database myDatabase3> GO1>