Click here to Skip to main content
15,893,486 members
Articles / Database Development / SQL Server

SQL Server Stored Procedures Comparer

Rate me:
Please Sign up or sign in to vote.
4.95/5 (35 votes)
22 Apr 2010CPOL9 min read 126.1K   6.5K   81  
Windows application that compares stored procedures between two SQL Server database
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <clear/>
    <add key="SourceServer" value=""/>
    <add key="SourceDatabase" value=""/>
    <add key="SourceAuthenticationMode" value="0"/>
    <add key="SourceUserName" value=""/>
    <add key="SourcePassword" value=""/>
    

    <add key="TargetServer" value=""/>
    <add key="TargetDatabase" value=""/>
    <add key="TargetAuthenticationMode" value="0"/>
    <add key="TargetUserName" value=""/>
    <add key="TargetPassword" value=""/>
  </appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Database Developer Virtify Inc.
Philippines Philippines
I am a database developer in my current employment for nearly 4 years. I'm proficient in programming using C/C++, C#, and T-sql. When I am not working, I like to read books(non-fiction specially), play mmorpgs where I can be what I don't want to be Smile | :) , and going outdoors.

Comments and Discussions