SQL Server/T-SQL/System/DB ID

Материал из SQL эксперт
Версия от 10:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Returning the Current Database ID and Name

 

This DB_ID function returns the database integer ID and DB_NAME returns the database name 
for the current database.
5>
6>
7> SELECT  DB_ID("master") DatabaseID, DB_NAME(1) DatabaseNM
8> GO
DatabaseID DatabaseNM
---------- -------------------------------------------------------------------------------------------------------------
-------------------
         1 master

(1 rows affected)