vote up 3 vote down star
1

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..

flag

80% accept rate

4 Answers

vote up 8 vote down check

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.

link|flag
vote up 3 vote down

If you want to version your entire database, Microsoft has a SQL Server Database Publishing Wizard (you can download it here). 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.

link|flag
vote up 2 vote down

You can run this select:

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'

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 ...

link|flag
Nice! Didn't know about that one. – VVS Dec 3 '08 at 17:59
vote up 1 vote down

I wrote a tool I called SMOscript which has an option to create a single .sql file per database object.

It uses SQL Server's SMO library to generate CREATE and DROP scripts.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.