I'm trying to implement database source control.
the tool I need should create a separate file for each object in the database, preferably arranged in folders, like
stored procedures functions views tables
and it would be great being able to also dump the results of certain queries, in order to keep track of the data changes in several configuration tables...
I wonder if there's is already a tool that can handle this kind of stuff...
--
just to clear a few things...
I'm already using sql delta to handle the update scripts...
I'd like to have scripts of the DB in order to use with subversion, so I can trace what objects where changed with each commit, without having to study the update scripts...
I'm developing a nice vb script with SQL Distributed Management Objects (SQL-DMO), I'll tell how it goes...
What's good about having my own solution, is that I can also include the outputs of queries or stored procedure execution, to trace the changes in certain tables, server configuration, the growth of the database, well, whatever I can dump to a text file...