Get All Database Names????
Database
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, Is it possible to get all the database names through a query(or any other way)those are present in SQL Server?
-
Hi, Is it possible to get all the database names through a query(or any other way)those are present in SQL Server?
Get to know your sys? tables
Select DBID ,Name From sysdatabases Order By name
Never underestimate the power of human stupidity RAH
-
Hi, Is it possible to get all the database names through a query(or any other way)those are present in SQL Server?