How can I get the list of available databases on a SQL server instance? I'm planning to make a list of them in a combo box in vb.net.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
or if you prefer
|
|||||||||||||
|
|
in light of the ambiguity as to the number of non-user databases, you should probably add:
and add the names of the reporting services databases |
|||
|
|
|
To exclude system databases:
Updated with accurate database_id, It should be greater than 4, to skip listing system databases which are having database id between 1 and 4.
|
|||||
|
|
Since you are using .NET you can use the SQL Server Management Objects
|
|||
|
|
|
System databases with ID 5 and 6 will be ReportServer and ReportServerTempDB if you have SQL Server Reporting Services installed. |
|||
|
|
works for our SQL 2008 server |
||||
|
|
|
In MSSQL 2008R2 this works:
And list only databases created by user(s). |
|||