SP_MSFOREACHDB - Databases List Via TSQL | Database Journal

SP_MSFOREACHDB – Databases List Via TSQL

Written By
Brian Knight
Brian Knight
Aug 7, 2001
1 minute read

Cursors provide a powerful tool for DBAs but sometimes they’re not needed. The procedure sp_MSforeachdb with the @command1 through @command3 parameter and is very similary to sp_Foreachtable. Sp_msforeachdb gives a DBA the ability to cycle through every database in your catalog. Although, the procedure was introduced in SQL Server 6+, Microsoft has made major improvements in SQL 7.0. The procedure is especially useful if you’d like to run through a list of databases for standard DBCCs.

In SQL Server 7.0, you can run a DBCC CHECKDB on all databases by using the following :

EXEC sp_Msforeachdb “DBCC checkdb (‘?’)”

In SQL 6.5 however, you must create a temporary table and in the same session, run a procedure to populate the table. After that, you have the same capabilities as in 7.0, as long as you stay in the same connection. To run sp_MSforeachdb in SQL 6.5, you must run the following:

Create table #SQLOLEDbUserProfile
(dbid int NOT NULL PRIMARY KEY,
profilebits int NOT NULL)
go

sp_MSdbuserprofile ‘init’
go

–insert your desired code here (I’m just doing maintenance)
EXEC sp_Msforeachdb “DBCC checkdb (‘?’)”

As you can see, I’m just performing a DBCC CHECKDB with sp_MSforeachdb. You can also use this procedure for sizing, and placing databases in single user mode. If you have any other ideas for applications, please feel free to contribute them to the DBA to DBA section.

Recommended Related Reference Material
Transact-SQL (William C. Amo)
Transact-SQL Programming (Kevin Kline, Lee Gould & Andrew Zanevsky)
Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.