Script to run all SQL files in a particular folder

3

2

Can anyone help me write a script to run all of the SQL files in a particular folder?

I need to deploy a bunch of Stored Procedures and I want to deploy them all at once without having to manually run each one. We run Microsoft SQL Server 2005.

EJC

Posted 2010-11-03T14:22:31.080

Reputation: 167

Answers

4

Windows command line processor support the for statement, so you can create a .cmd file with something like that:

for %%f in (*.sql) do osql -U<User> -P<Pass> -S<Server> -d<Database> -i%%f

This will process all .sql files of the current folder sequentially (you can use also sqlcmd as suggested in another answer).

Reference: Microsoft Windows XP - For

Also, you can specify the database directly in the script using at the beginning:

use DatabaseName
go

The go is important because some statements like CREATE VIEW or CREATE PROCEDURE needs to be at the beginning of a batch of SQL commands.

Alberto Martinez

Posted 2010-11-03T14:22:31.080

Reputation: 1 235

It would be useful to know how to run scripts that are in the subfolders. – ufo – 2018-09-21T14:38:11.060

I'm running Windows 7, I assume they didn't take away the For loop, but you never know. Do you know if this works on 7? – EJC – 2010-11-04T14:01:13.943

1

The Windows team of Microsoft take compatibility of batch files very seriuously, so they don't change almost anything from the batch interpreter or they'll break existing batch files (which are used a lot in some corporate environments), see http://blogs.msdn.com/b/oldnewthing/archive/2005/09/09/462906.aspx.

– Alberto Martinez – 2010-11-04T21:29:56.833

0

If you need to run them in a particular order then the best solution is just to write a bat file:

run fileA.sql
run fileB.sql
run fileZ.sql
run fileM.sql
...

ChrisF

Posted 2010-11-03T14:22:31.080

Reputation: 39 650

No order. So I can just use run C:\folder\*.sql how does it know what DB to run them on? – EJC – 2010-11-03T14:29:58.117

@EJC - you can specify the database in the script - I don't have an example immediately to hand. – ChrisF – 2010-11-03T14:33:49.083