Creating the Sample Database - SQL Server 2005
To create books in Microsoft SQL Server 2005:
books in the Database Name field; then click OK. (You can use the General, Options, and Filegroups pages to specify other database settings, but the default settings work fine for the sample database.)
books and closes the New Database dialog box.
books.
books_sqlserver.sql; then click Open.
DROP TABLE statements, which you'll need to rerun books_sqlserver.sql later to restore the tables to their original states.
books, see "Microsoft SQL Server" in Chapter 1.
Tip
books_sqlserver.sql differs slightly from the standard SQL script books_standard.sql. In the SQL Server script, the data type of the column pubdate in the table titles is DATETIME (rather than DATE). Also, date literals don't have the DATE keyword. (The standard SQL DATE '2000-08-01' is equivalent to the SQL Server date '2000-08-01', for example.)