how sql objects manage with VSS?
can I Integrating SourceSafe / VSS with SQL Server 2005 ?
I want versioning sql schema?
how sql objects manage with VSS?
can I Integrating SourceSafe / VSS with SQL Server 2005 ?
I want versioning sql schema?
Please be more specific.
do you want to version control you schema?
or
do you want to use SQL server as your VSS backend?
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.
Utilize tools like SQL Compare from Red Gate which will allow you to create schema, object per file, and then maintain the state of the files with VSS. I am currently trying to push that in my organization.