Home > SQL Server > List all your databases on your server with T-SQL

List all your databases on your server with T-SQL

Well if you would like to list all the databases on your Microsoft SQL Server then you can simply use this T-SQL piece of code below (tested with Microsoft SQL Server 2005):

PRINT ‘List of all databases within your server:’
GO
EXEC sp_MSforeachdb @command1="print ‘DATABASE: ‘ + (‘?’)"

Enjoy!

Yellow Duck Guy
Greg Olsen

Categories: SQL Server
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment