1> --autoshrink: 'True' indicates this database can be shrunk in size safely.2> CREATE DATABASE myDatabase;3> EXEC sp_dboption 'myDatabase', 'autoshrink', 'False'4> GO1>2> Drop database myDatabase3> GO1>