vote up 0 vote down star

how sql objects manage with VSS?

can I Integrating SourceSafe / VSS with SQL Server 2005 ?

I want versioning sql schema?

flag

38% accept rate

2 Answers

vote up 0 vote down

Please be more specific.

do you want to version control you schema?

or

do you want to use SQL server as your VSS backend?

link|flag
vote up 1 vote down

Aside from VSS being a total train wreck, if you want to store your schema in source control, one possible approach is to store the object creation script for each database object as a separate file in source control. That way, you can update individual parts of the schema easily. So you have a script for each table, trigger, index, procedure etc. As part of your build process these can be pulled together into a single script for ease of application to the target database.

link|flag
Total train wreck: my experience as well. – rpetrich Aug 25 at 1:50

Your Answer

Get an OpenID
or

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