Stored Procedures to .sql files - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T15:06:48Zhttp://stackoverflow.com/feeds/question/337601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337601/stored-procedures-to-sql-files3Stored Procedures to .sql filesmadcolor2008-12-03T15:51:18Z2008-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#3376192Answer by TcKs for Stored Procedures to .sql filesTcKs2008-12-03T15:56:10Z2008-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#3376268Answer by Josh for Stored Procedures to .sql filesJosh2008-12-03T15:57:41Z2008-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#3376613Answer by Scott A. Lawrence for Stored Procedures to .sql filesScott A. Lawrence2008-12-03T16:06:15Z2008-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&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#3447361Answer by devio for Stored Procedures to .sql filesdevio2008-12-05T18:25:49Z2008-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>