Preparing SQL Server
Regardless of which version of SQL Server you are running, you should have access to two valuable tools: Enterprise manager and SQL Query Analyzer. This article isn’t really designed to demonstrate SQL Server database administration so let’s assume you already know how to create a database using whichever version of SQL Server you have access to.
Begin by creating a new database called TestSQL, and then creating a new table for that database called TestTable. Within the TestTable create 7 new columns: TestID (int identity), FirstName (varchar 50), LastName (varchar 50), Address (varchar 50), City (varchar 50), Province (varchar 50), Phone (varchar 20).