How do I run a T-SQL query to loop through all databases?
Find out how to run a T-SQL query to loop through all databases.
I have a shared Microsoft SQL Server that has over 100 databases on it. The log files are getting outrageously...
Continue Reading This Article
Enjoy this article as well as all of our content, including E-Guides, news, tips and more.
By submitting your personal information, you agree that TechTarget and its partners may contact you regarding relevant content, products and special offers.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.
large and I'm trying to conserve some disk space. Rollbacks to specific transactions aren't important. I would like to change all the databases to SIMPLE recovery mode so I can run an auto-shrink each night. Unfortunately, I can't find anything that explains how to run a T-SQL query to loop through all databases. Is this possible? If so, can you provide an example of how to do this?
Run this command:
EXEC sp_MSforeachdb @command1="print 'ALTER DATABASE ' + ('?') + ' SET RECOVERY SIMPLE'"
Then you can copy the output from this query and paste into another query window to actually change the settings. You can also remove the system databases when you select from the output, so you don't change these databases.
Do you have comments on this Ask the Expert Q&A? Let us know.
Dig Deeper on SQL Server Backup and Recovery
Have a question for an expert?
Please add a title for your question
Get answers from a TechTarget expert on whatever's puzzling you.
Meet all of our SQL Server experts
View all SQL Server questions and answers
Start the conversation
0 comments