Click here to Skip to main content
6,595,854 members and growing! (17,465 online)
Email Password   helpLost your password?
Database » Database » Utilities     Intermediate License: The Code Project Open License (CPOL)

Generating osql Batch Scripts

By Michael Erasmus

This article is on a tool I wrote to generate executable osql deployment batch scripts.
C#, SQL, Windows, .NET 1.1SQL 2000, VS.NET2003, DBA, Dev
Posted:9 Nov 2005
Updated:8 Jan 2006
Views:56,644
Bookmarked:41 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
8 votes for this article.
Popularity: 4.21 Rating: 4.67 out of 5

1

2

3
3 votes, 37.5%
4
5 votes, 62.5%
5

Introduction

This is a small tool I wrote that will scan a selected folder for all the .sql files and generate a MS-DOS batch script that will execute the scripts on a selected server/database.

Background

In my work, I often find myself writing an assortment of stored procedures, user defined functions and views that are executed on the development server. I usually save all my SQL scripts in text files with a .sql extension. After development these files have to be deployed to the production server. I have found the osql utility that comes installed with SQL Server to be very handy in these situations. All I have to do is create a batch script that has to be copied with the SQL scripts. This batch script can then be executed to run all the scripts on a specified server.

But creating these batch scripts manually can be a bit of a pain. That's why I wrote this tool.

Using the code

The projects consists of a GUI that uses the OsqlScript class to generate the file. This class has the following properties:

  • string Folder - The path of the folder to scan.
  • string BatchFileName - The name and path of the batch file to be generated (without the ".bat").
  • string Server - The SQL Server instance used.
  • string Database - The database to use.
  • bool UseIntegratedSecurity - Specifies to use Windows authentication to log in.
  • string Username and string Password
  • bool UseReportFile - Specifies that the generated script will log to a report file.
  • string Reportfile - The file name and extension to use as a report file.

Once you have created an instance of the class, set its properties to the appropriate values.

To generate the file just call OsqlScript.Generate().

Here is an example:

OsqlScript oscript = new OsqlScript("C:\\scripts",
                          "C:\\scripts\\ExecuteScripts");
oscript.Server = "MyServer";
oscript.Database = "Northwind";
oscript.UseIntegratedSecurity = true;
oscript.UseReportFile = true;
oscript.ReportFile = "Report.txt";

//generate the file

oscript.Generate();

The object will generate the specified batch script to run the osql command line utility for all the .sql files in the folder. Just execute the batch script in the same directory as the SQL scripts to execute them.

Sorting additions

Version 1.1 includes sorting capabilities. The script execution sort order can be either done alphabetically (default), or based on the date created, date last modified, or the file name date (the object will try to parse the date from the filename, e.g. '2002/07/09.sql'). To do the sorting, I called the Array.Sort method and created an IComparer class for each sorting method. (Which by the way, I think just rocks, custom sorting is so easy in .NET!). So to create any other sorting method is as easy as creating an ICompare object and implementing the Compare method.

Conclusion

This is a very simple but handy deployment tool that I use and I hope that someone else would find it useful. Any improvements, bug fixes or suggestions are more than welcome!

History

  • Version 1 - Submitted on 1st November, 2005.
  • Version 1.1 - Added sorting capabilities.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Michael Erasmus


Member
I'm 27 years old and currently I'm working as a full time software developer/consultant in Amersfoort, Netherlands
Occupation: Web Developer
Location: Netherlands Netherlands

Other popular Database articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 12 of 12 (Total in Forum: 12) (Refresh)FirstPrevNext
GeneralAnother option PinmemberJeffPClark4:21 19 Nov '05  
GeneralBetter and easy way PinmemberTareq Muhammad0:36 19 Nov '05  
GeneralRe: Better and easy way PinmemberMichael Erasmus21:07 4 Jan '06  
GeneralRe: Better and easy way Pinmembercjohnson611:45 17 Apr '06  
GeneralRe: Better and easy way PinmemberMichael Erasmus21:48 20 Jun '06  
Generalsa Pinmemberzoyo17:55 14 Nov '05  
GeneralCool PinmemberKant11:25 10 Nov '05  
GeneralMaking sure scripts get installed in correct order PinmemberFiorina813:43 10 Nov '05  
GeneralRe: Making sure scripts get installed in correct order PinmemberKant11:31 10 Nov '05  
GeneralRe: Making sure scripts get installed in correct order PinmemberMichael Erasmus19:29 10 Nov '05  
GeneralRe: Making sure scripts get installed in correct order PinmemberKant10:58 11 Nov '05  
GeneralRe: Making sure scripts get installed in correct order PinmemberVertyg022:41 11 Nov '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 8 Jan 2006
Editor: Rinish Biju
Copyright 2005 by Michael Erasmus
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project