Stored Procedure Versioning - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:42:04Zhttp://stackoverflow.com/feeds/question/183148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/183148/stored-procedure-versioning5Stored Procedure Versioningsepang2008-10-08T14:46:01Z2008-10-08T19:44:05Z
<p>How do you manage revisions of stored procedures?</p>
<p>We have a BI solution on SQL Server 2005 with hundreds of stored procedures.
What would be a good way to get these into subversion? recommended tools to script SP to files?</p>
http://stackoverflow.com/questions/183148/stored-procedure-versioning/183171#1831714Answer by Galwegian for Stored Procedure VersioningGalwegian2008-10-08T14:48:30Z2008-10-08T14:48:30Z<p>See <a href="http://stackoverflow.com/questions/173/how-do-i-version-my-ms-sql-database-in-svn">here</a> and <a href="http://stackoverflow.com/questions/308/is-there-a-version-control-system-for-database-structure-changes">here</a> for a start.</p>
http://stackoverflow.com/questions/183148/stored-procedure-versioning/183189#1831890Answer by Paul Nearney for Stored Procedure VersioningPaul Nearney2008-10-08T14:51:16Z2008-10-08T14:51:16Z<p>I have previously used a Visual Studio Database Project to manage create table scripts, stored procedure scripts etc. I'm fairly sure you could then use subversion to manage these files in the same way as any Visual Studio project.</p>
<p>I used the built in functionality for scripting the procs, but i'm sure Redgate would have some tasty tools for that.</p>
http://stackoverflow.com/questions/183148/stored-procedure-versioning/183192#1831924Answer by Vijesh VP for Stored Procedure VersioningVijesh VP2008-10-08T14:51:34Z2008-10-08T14:51:34Z<p>Please check out here <a href="http://stackoverflow.com/questions/146543/what-is-the-best-way-to-version-control-my-sql-server-stored-procedures">What is the best way to version control my SQL server stored procedures?</a>. Might help you identify couple of solutions to this issue.</p>
http://stackoverflow.com/questions/183148/stored-procedure-versioning/183218#1832183Answer by Rob Sanders for Stored Procedure VersioningRob Sanders2008-10-08T14:57:07Z2008-10-08T14:57:07Z<p>There are doubtless a bunch of off-the-shelf products you could buy (I think a few RedGate tools might come in handy here), as well as Visual Studio Team Suite - Database Edition.</p>
<p>In light of purchasing something, why not consider using <a href="http://msdn.microsoft.com/en-us/library/ms162169.aspx" rel="nofollow">SQL Management Objects (SMO)?</a> </p>
<p>I've written a couple of utilities which generate T-SQL scripts (using the Scripter class) which produces the same scripts you get from generating scripts through the SQL Server Management Studio (it uses the same functionality).</p>
<p>You could integrate such a utility into a build script/build process which would allow you to generate scripts and then version & check them into a source repository. Plus, you can batch the scripts into a single file (if desired) which beats maintaining hundreds of individual files.</p>
<p>I wrote a <a href="http://internationalized.spaces.live.com/blog/cns!43F3A7682D1564E4!216.entry" rel="nofollow">blog entry</a> about this approach a while back.</p>
<p>Check out more on the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.scripter.aspx" rel="nofollow">SMO class Scripter</a></p>
<p>Here's a few more entries which might be useful:</p>
<p><a href="http://www.sqlteam.com/article/scripting-database-objects-using-smo-updated" rel="nofollow">http://www.sqlteam.com/article/scripting-database-objects-using-smo-updated</a></p>
<p><a href="http://sqlblog.com/blogs/ben_miller/archive/2007/10/03/table-scripting-with-smo-part-1.aspx" rel="nofollow">http://sqlblog.com/blogs/ben_miller/archive/2007/10/03/table-scripting-with-smo-part-1.aspx</a></p>