We will be using Microsoft SQL Server 2008 running on IISQLSRV.cs.washington.edu. Accounts on it have been set up for each of you, and you have been given your user names and passwords. For the first project, you need to set up an interactive query session with the server. For this, you will need access to SQL Server Management Studio, which is installed on the machines in the undergrad labs. You will need it for both administrative tasks and interactive querying.
Before you can run queries on IISQLSRV, you need to connect to the server in Management Studio and change your password:
For the first project, you will use Management Studio to connect to the server, and run SQL queries. This will involve the following steps:
USE imdb;
, and press F5 to execute
the statement. This will set your current database to be the imdb
database, used in the first project.That should be enough to get you started with Management Studio and SQL Server, but both tools have many more capabilities. The variant of SQL supported by SQL Server is called Transact-SQL (T-SQL); in addition to executing all T-SQL statements, Management Studio can also be used to view query execution plans, statistics, and more. To learn more about these features, explore the Query, Tools, and View menus of Management Studio, or read the Management Studio manual.
Note that in addition to read-only privileges on the imdb database,
you also have your own database on IISQLSRV. This database's name
is the same as your SQL Server username, so it can be accessed using
the SQL statement USE your_iisqlsrv_username;
.
You have full privileges to this database; feel free to use it for
any project or homework assignment.
Warning: It is not possible to directly connect to SQL Server on IISQLSRV from outside the CSE network. If you plan to use Management Studio or connect to SQL Server from home, consider working on a CSE terminal server, such as aria.cs.washington.edu, or learn about SSH tunneling for SQL Server.