USE (Transact-SQL)

Changes the database context to the specified database or database snapshot.

Topic link iconTransact-SQL Syntax Conventions

Syntax

USE { database }

Arguments

  • database
    Is the name of the database or database snapshot to which the user context is switched. Database and database snapshot names must comply with the rules for identifiers.

Remarks

When a SQL Server login connects to SQL Server 2005, the login is automatically connected to its default database and acquires the security context of a database user. If no database user has been created for the SQL Server login, the login connects as guest. If the database user does not have CONNECT permission on the database, the USE statement will fail. If no default database has been assigned to the login, its default database will be set to master.

USE is executed at both compile and execution time and takes effect immediately. Therefore, statements that appear in a batch after the USE statement are executed in the specified database.

Permissions

Requires CONNECT permission on the target database.

Examples

The following example changes the database context to the AdventureWorks database.

USE AdventureWorks;
GO

See Also

Reference

CREATE LOGIN (Transact-SQL)
CREATE USER (Transact-SQL)
CREATE DATABASE (Transact-SQL)
DROP DATABASE (Transact-SQL)
EXECUTE (Transact-SQL)

Other Resources

Principals
Using Identifiers As Object Names

Help and Information

Getting SQL Server 2005 Assistance