Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
If your question is specific to MS SQL Server please add the appropriate tag. – Milen A. Radev Sep 29 '08 at 9:41

8 Answers

up vote 63 down vote accepted
SELECT name
FROM master..sysdatabases

or if you prefer

EXEC sp_databases
share|improve this answer
4  
Thumbs up for "EXEC sp_databases". The reason for this is that "sysdatabases" does not actually exist in SQL 2005 and 2008. It is renamed to "sys.databases". Cheers. – Gia Dec 31 '09 at 14:48
1  
@Gia It does exist as a backwards compatablity view. msdn.microsoft.com/en-us/library/ms179900%28v=SQL.110%29.aspx – Chris Diver Aug 7 '11 at 22:26
2  
EXEC sp_databases was slow to execute for me; 40 seconds on an instance with 36 databases. Selecting from sysdatabases was instant. – Marc Jan 28 at 14:19

in light of the ambiguity as to the number of non-user databases, you should probably add:

WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb');

and add the names of the reporting services databases

share|improve this answer

To exclude system databases:

SELECT [name]
FROM master.dbo.sysdatabases
WHERE dbid > 6

Edited : 2:36 PM 2/5/2013

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.

SELECT * 
FROM sys.databases d
WHERE d.database_id > 4
share|improve this answer
4  
This does not work. Perhaps you meant > 4? Tables 5 & 6 are user tables. – Investor5555 Aug 24 '11 at 19:58

Since you are using .NET you can use the SQL Server Management Objects

Dim server As New Microsoft.SqlServer.Management.Smo.Server("localhost")
For Each db As Database In server.Databases
    Console.WriteLine(db.Name)
Next
share|improve this answer

System databases with ID 5 and 6 will be ReportServer and ReportServerTempDB if you have SQL Server Reporting Services installed.

share|improve this answer
SELECT [name] 
FROM master.dbo.sysdatabases 
WHERE dbid > 4 

works for our SQL 2008 server

share|improve this answer

In SQL Server 7, dbid 1 thru 4 are the system dbs.

share|improve this answer

In MSSQL 2008R2 this works:

select name from master.sys.databases where owner_sid>1;

And list only databases created by user(s).

share|improve this answer
Try owner_sid<>1 – wqw Sep 21 '12 at 13:13
2  
Edit: This is so wrong! owner_sid=1 means sa owner, nothing special about it. – wqw Sep 21 '12 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.