Stored Procedures to .sql files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:06:48Z http://stackoverflow.com/feeds/question/337601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337601/stored-procedures-to-sql-files 3 Stored Procedures to .sql files madcolor 2008-12-03T15:51:18Z 2008-12-05T18:25:49Z <p>Is there a simple process in SQL 2005 for spitting all of my stored procedures out to individual .sql files. I'd like to move them into VSS, but am not too excited by the prospect of clicking on each one to get the source, dumping it into a text file and so on.. </p> http://stackoverflow.com/questions/337601/stored-procedures-to-sql-files/337619#337619 2 Answer by TcKs for Stored Procedures to .sql files TcKs 2008-12-03T15:56:10Z 2008-12-03T15:56:10Z <p>You can run this select:</p> <pre><code>select O.name, M.definition from sys.objects as O left join sys.sql_modules as M on O.object_id = M.object_id where type = 'P' </code></pre> <p>and you get the name and source code for stored procedures. Propably most easy way, how to put it in files is in some "classic" languge like c#, java, etc ...</p> http://stackoverflow.com/questions/337601/stored-procedures-to-sql-files/337626#337626 8 Answer by Josh for Stored Procedures to .sql files Josh 2008-12-03T15:57:41Z 2008-12-03T15:57:41Z <p>In SQL Management Studio right click on the database, go to tasks -> Generate Scripts, walkthrough the wizard. One of the pages will let you script each object to its own file.</p> http://stackoverflow.com/questions/337601/stored-procedures-to-sql-files/337661#337661 3 Answer by Scott A. Lawrence for Stored Procedures to .sql files Scott A. Lawrence 2008-12-03T16:06:15Z 2008-12-03T16:06:15Z <p>If you want to version your entire database, Microsoft has a SQL Server Database Publishing Wizard (you can download it <a href="http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&amp;displaylang=en" rel="nofollow">here</a>). The overview says there's direct integration with Visual Studio, but I haven't used it personally to vouch for how good (or bad) it might be.</p> http://stackoverflow.com/questions/337601/stored-procedures-to-sql-files/344736#344736 1 Answer by devio for Stored Procedures to .sql files devio 2008-12-05T18:25:49Z 2008-12-05T18:25:49Z <p>I wrote a tool I called <a href="http://devio.wordpress.com/2008/09/05/introducing-smoscript/" rel="nofollow">SMOscript</a> which has an option to create a single .sql file per database object.</p> <p>It uses SQL Server's SMO library to generate CREATE and DROP scripts.</p>