Click here to Skip to main content
Click here to Skip to main content

Check Validity of SQL Server Stored Procedures/Views/Functions (updated)

By , 19 Sep 2008
 

Introduction

This is an updated version of the code posted by IPC2000. The following changes have been made:

  • References to the enterprise library have been removed, allowing for more flexibility in specifying the connection string. Connection strings and verbosity can be specified on the command line.
  • Output is more "spreadsheet friendly", using tab delimited output that can be copy/pasted into Excel
  • Support for SQL 2005 has been introduced. Separation of user from schema in SQL 2005 requires a slightly different SQL statement.
  • Validation logic has been moved to a separate class which allows for referencing/use in another project. This is especially handy for inclusion as an NUnit test.

Background

Please refer to this article for more background on the validation. This is simply a polished version of that piece.

Using the Code

The console executable can be run specifying a /c:<connection string> argument as well as a /v:<verbosity> argument. Verbosity values are:

  • Quiet: Designed for spreadsheets, a tab delimited list of invalid objects
  • Normal (default): Includes some description of what's going on. Version of SQL Server detected and a summary of objects processed and object failures
  • Verbose: Code will list every object processed as it's processing it 

Update

A new switch, /x, has been added to ask the program to actually run any procedure, function, view it thinks is safe.  If CREATE, DROP, INSERT, UPDATE, DELETE, or EXEC/EXECUTE appears in the text of the object it will move on, otherwise, it will add a dummy value for each parameter it finds and execute the object.  Since the logic isn't perfect (stored procs can call functions that do bad things), this is turned off by default, but enabling it should generally be safe if the system was coded using best practices.  This feature has limited testing behind it - please comment below if you find issues and I'll take a look when I can.

You can also reference the executable directly into NUnit and run the corresponding method. Here's an example C# test method:

[TestFixture]
public class DatabaseValidation
{
    [Test]
    public void CheckForDatabaseCompilationProblems()
    {
	Assert.IsTrue(
	DatabaseValidator.Validator.DatabaseIsValid(
	ConfigurationManager.ConnectionStrings
	[MyConnectionString].ConnectionString,
	DatabaseValidator.Verbosity.Normal),
	"Invalid objects found in the database - Run SqlValidator");
    } 
} 

History

  • 2008-05-02: Initial post

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

Emil Lerch
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionChanges from previous versionmembertomvincent16 Nov '11 - 9:23 
GeneralTriggersmemberps_eric29 Nov '10 - 12:26 
GeneralRe: TriggersmemberEmil Lerch5 Mar '11 - 17:37 
GeneralRuns on SQL 2008 But does not catch everythingmemberVaccano25 Mar '09 - 13:41 
GeneralConnection string and SSPI Security context [modified]memberC.D. Hilton23 Sep '08 - 4:11 
GeneralNice!membermsmits26 May '08 - 19:55 
GeneralSome welcome additions...membermsmits26 May '08 - 20:07 
GeneralRe: Some welcome additions...memberEmil Lerch19 Sep '08 - 13:00 
GeneralVery useful/clevermemberpap19646 May '08 - 20:35 
GeneralRe: Very useful/clevermemberWil Hutton19 May '08 - 5:28 
GeneralRe: Very useful/clevermemberEmil Lerch19 May '08 - 7:50 
General[Message Removed]memberMojtaba Vali2 May '08 - 20:31 
GeneralHorizontal ScrollingmemberChris Meech2 May '08 - 6:34 
GeneralRe: Horizontal ScrollingmemberEmil Lerch2 May '08 - 6:42 
GeneralRe: Horizontal ScrollingmemberChris Meech2 May '08 - 9:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 19 Sep 2008
Article Copyright 2008 by Emil Lerch
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid