title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | monikerRange | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DB_NAME (Transact-SQL) |
DB_NAME (Transact-SQL) |
VanMSFT |
vanto |
07/30/2017 |
sql |
t-sql |
reference |
|
|
|
>= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqldb-mi-current |
[!INCLUDE sql-asdb-asdbmi-asa-pdw]
This function returns the name of a specified database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
DB_NAME ( [ database_id ] )
database_id
The identification number (ID) of the database whose name DB_NAME
will return. If the call to DB_NAME
omits database_id or when the database_id is 0, DB_NAME
returns the name of the current database.
nvarchar(128)
If the caller of DB_NAME
does not own a specific non-master or non-tempdb database, ALTER ANY DATABASE
or VIEW ANY DATABASE
server-level permissions at minimum are required to see the corresponding DB_ID
row. For the master database, DB_ID
needs CREATE DATABASE
permission at minimum. The database to which the caller connects will always appear in sys.databases.
Important
By default, the public role has the VIEW ANY DATABASE
permission, which allows all logins to see database information. To prevent a login from detecting a database, REVOKE
the VIEW ANY DATABASE
permission from public, or DENY
the VIEW ANY DATABASE
permission for individual logins.
This example returns the name of the current database.
SELECT DB_NAME() AS [Current Database];
GO
This example returns the database name for database ID 3
.
USE master;
GO
SELECT DB_NAME(3) AS [Database Name];
GO
Examples: [!INCLUDEssazuresynapse-md] and [!INCLUDEssPDW]
SELECT DB_NAME() AS [Current Database];
This example returns the database name and database_id for each database.
SELECT DB_NAME(database_id) AS [Database], database_id
FROM sys.databases;
DB_ID (Transact-SQL)
Metadata Functions (Transact-SQL)
sys.databases (Transact-SQL)