Do you source control your databases? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T09:29:53Z http://stackoverflow.com/feeds/question/115369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/115369/do-you-source-control-your-databases 160 Do you source control your databases? Brian MacKay 2008-09-22T15:07:33Z 2009-09-20T11:37:11Z <p>I feel that my shop has a hole because we don't have a solid process in place for versioning our database schema changes. We do a lot of backups so we're more or less covered, but it's bad practice to rely on your last line of defense in this way. </p> <p>Surprisingly, this seems to be a common thread. Many shops I have spoken to ignore this issue because their databases don't change often, and they basically just try to be meticulous.</p> <p>However, I know how that story goes. It's only a matter of time before things line up just wrong and something goes missing. </p> <p>Are there any best practices for this? What are some strategies that have worked for you? </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115375#115375 60 Answer by blowdart for Do you source control your databases? blowdart 2008-09-22T15:09:22Z 2008-09-22T15:09:22Z <p>The databases themselves? No</p> <p>The scripts that create them, including static data inserts, stored procedures and the like; of course. They're text files, they are included in the project and are checked in and out like everything else.</p> <p>Of course in an ideal world your database management tool would do this; but you just have to be disciplined about it.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115381#115381 5 Answer by Paco for Do you source control your databases? Paco 2008-09-22T15:09:55Z 2008-09-22T15:09:55Z <p>I do by saving create/update scripts and a script that generates sampledata.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115382#115382 137 Answer by Gulzar for Do you source control your databases? Gulzar 2008-09-22T15:09:55Z 2008-09-22T15:09:55Z <p>Must read <a href="http://www.codinghorror.com/blog/archives/001050.html" rel="nofollow">Get your database under version control</a>. Check the series of posts by Scott Allen.</p> <p><em>When it comes to version control, the database is often a second or even third-class citizen. From what I've seen, teams that would never think of writing code without version control in a million years-- and rightly so-- can somehow be completely oblivious to the need for version control around the critical databases their applications rely on. I don't know how you can call yourself a software engineer and maintain a straight face when your database isn't under exactly the same rigorous level of source control as the rest of your code. Don't let this happen to you. Get your database under version control.</em> </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115383#115383 1 Answer by Steve Moyer for Do you source control your databases? Steve Moyer 2008-09-22T15:10:15Z 2008-09-22T15:10:15Z <p>Yes ... our databases are designed in ERwin and the DDLs for each version are automatically generated. The ERwin files are kept in our source code control system (actually, so are our engineering documents).</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115385#115385 14 Answer by Matt Rogish for Do you source control your databases? Matt Rogish 2008-09-22T15:10:19Z 2008-09-22T15:10:19Z <p>I absolutely love Rails ActiveRecord migrations. It abstracts the DML to ruby script which can then be easily version'd in your source repository.</p> <p>However, with a bit of work, you could do the same thing. Any DML changes (ALTER TABLE, etc.) can be stored in text files. Keep a numbering system (or a date stamp) for the file names, and apply them in sequence.</p> <p>Rails also has a 'version' table in the DB that keeps track of the last applied migration. You can do the same easily.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115386#115386 0 Answer by Oli for Do you source control your databases? Oli 2008-09-22T15:10:27Z 2008-09-22T15:10:27Z <p>We have a weekly sql dump into a subversion repo. It's fully automated but it's a REALLY beefy task. </p> <p>You'll want to limit the number of revisions because it really chows disk space after a while!</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115387#115387 5 Answer by Dustin for Do you source control your databases? Dustin 2008-09-22T15:10:35Z 2008-09-22T15:10:35Z <p>Yes, we do it by keeping our SQL as part of our build -- we keep DROP.sql, CREATE.sql, USERS.sql, VALUES.sql and version control these, so we can revert back to any tagged version.</p> <p>We also have ant tasks which can recreate the db whenever needed.</p> <p>Plus, the SQL is then tagged along with your source code that goes with it.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115394#115394 6 Answer by Pete for Do you source control your databases? Pete 2008-09-22T15:11:40Z 2008-09-22T15:11:40Z <p>YES, I think it is important to version your database. Not the data, but the schema for certain. </p> <p>In Ruby On Rails, this is handled by the framework with "migrations". Any time you alter the db, you make a script that applies the changes and check it into source control. </p> <p>My shop liked that idea so much that we added the functionality to our Java-based build <a href="http://stackoverflow.com/questions/101868/rails-like-database-migrations#104903">using shell scripts</a> and Ant. We integrated the process into our deployment routine. It would be fairly easy to write scripts to do the same thing in other frameworks that don't support DB versioning out-of-the-box. </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115396#115396 2 Answer by Ben Hoffstein for Do you source control your databases? Ben Hoffstein 2008-09-22T15:11:44Z 2008-09-22T15:11:44Z <p>I source control the database schema by scripting out all objects (table definitions, indexes, stored procedures, etc.). But, as for the data itself, simply rely on regular backups. This ensures that all structural changes are captured with proper revision history, but doesn't burden the database each time data changes.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115398#115398 7 Answer by Sara Chipps for Do you source control your databases? Sara Chipps 2008-09-22T15:11:58Z 2008-09-22T15:11:58Z <p>The best practice I have seen is creating a build script to scrap and rebuild your database on a staging server. Each iteration was given a folder for database changes, all changes were scripted with "Drop... Create" 's . This way you can rollback to an earlier version at any time by pointing the build to folder you want to version to. </p> <p>I believe this was done with NaNt/CruiseControl. </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115400#115400 1 Answer by Robert S. for Do you source control your databases? Robert S. 2008-09-22T15:12:33Z 2008-09-22T15:12:33Z <p>We use replication and clustering to manage our databases, as well as backups. We use Serena to manage our SQL scripts and configuration implementations. Before a configuration change is made, we perform a backup as part of the change management process. This backup satisfies our rollback requirement. </p> <p>I think it all depends on scale. Are you talking about enterprise applications that need offsite backups and disaster recovery? A small workgroup running an accounting application? Or everywhere in between?</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115402#115402 2 Answer by itsmatt for Do you source control your databases? itsmatt 2008-09-22T15:12:45Z 2008-09-22T15:12:45Z <p>Hey Brian,</p> <p>I have everything necessary to recreate my DB from bare metal, minus the data itself. I'm sure there are lots of ways to do it, but all my scripts and such are stored off in subversion and we can rebuild the DB structure and such by pulling all that out of subversion and running an installer.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115403#115403 5 Answer by Stu Thompson for Do you source control your databases? Stu Thompson 2008-09-22T15:12:50Z 2008-09-22T15:12:50Z <p>Yes. Code is code. My rule of thumb is that I need to <strong>be able to build and deploy the application from scratch</strong>, without looking at a development or production machine.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115404#115404 2 Answer by Wes P for Do you source control your databases? Wes P 2008-09-22T15:12:55Z 2008-09-22T15:12:55Z <p>At our business we use database change scripts. When a script is run, it's name is stored in the database and won't run again, unless that row is removed. Scripts are named based on date, time and code branch, so controlled execution is possible.</p> <p>Lots and lots of testing is done before the scripts are run in the live environment, so "oopsies" only happen, generally speaking, on development databases.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115405#115405 3 Answer by Mike Deck for Do you source control your databases? Mike Deck 2008-09-22T15:13:23Z 2008-09-22T15:13:23Z <p>The most successful scheme I've ever used on a project has combined backups and differential SQL files. Basically we would take a backup of our db after every release and do an SQL dump so that we could create a blank schema from scratch if we needed to as well. Then anytime you needed to make a change to the DB you would add an alter scrip to the sql directory under version control. We would always prefix a sequence number or date to the file name so the first change would be something like 01_add_created_on_column.sql, and the next script would be 02_added_customers_index. Our CI machine would check for these and run them sequentially on a fresh copy of the db that had been restored from the backup.</p> <p>We also had some scripts in place that devs could use to re-initialize their local db to the current version with a single command.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115407#115407 0 Answer by Mitch Wheat for Do you source control your databases? Mitch Wheat 2008-09-22T15:13:47Z 2008-09-22T15:13:47Z <p>I suppose it depends on what you mean by 'your databases'.</p> <p>Data should be backed up regularly, as part of a maintenance schedule (ie. frequent log file backups, regular data file backups and preferably offsite backup).</p> <p>The schema scripts should be under Source control. I prefer the baseline and incremental change script approach, with all database changes (data and schema) scripted, versioned and in Source control. This approach also means that you can rebuild databases to specific versiond as part of automated build processes.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115408#115408 1 Answer by David for Do you source control your databases? David 2008-09-22T15:13:50Z 2008-09-22T15:13:50Z <p>We have our Create/Alter scripts under source control. As for the database itself, when you have hundreds of tables and a lot of processing data every minutes, it would be CPU and HDD killer to version all the database. That's why backup is still, according to me, the best way to control your data.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115414#115414 0 Answer by dacracot for Do you source control your databases? dacracot 2008-09-22T15:14:54Z 2008-09-22T15:14:54Z <p>We insist upon change scrips and a master data definition script. These are checked into CVS along with any other source code. The PL/SQL (were are an Oracle shop) is also source controlled in CVS. The change scripts are repeatable and can be passed to everyone on the team. Basically, just because it is a database, there is never an excuse not to code it and use a source control system to track the changes.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115422#115422 17 Answer by Paul Tomblin for Do you source control your databases? Paul Tomblin 2008-09-22T15:15:37Z 2008-09-22T15:15:37Z <p>You should never just log in and start entering "ALTER TABLE" commands to change a production database. The project I'm on has database on every customer site, and so every change to the database is made in two places, a dump file that is used to create a new database on a new customer site, and an update file that is run on every update which checks your current database version number against the highest number in the file, and updates your database in place. So for instance, the last couple of updates:</p> <pre><code>if [ $VERSION \&lt; '8.0.108' ] ; then psql -U cosuser $dbName &lt;&lt; EOF8.0.108 BEGIN TRANSACTION; -- -- Remove foreign key that shouldn't have been there. -- PCR:35665 -- ALTER TABLE migratorjobitems DROP CONSTRAINT migratorjobitems_destcmaid_fkey; -- -- Increment the version UPDATE sys_info SET value = '8.0.108' WHERE key = 'DB VERSION'; END TRANSACTION; EOF8.0.108 fi if [ $VERSION \&lt; '8.0.109' ] ; then psql -U cosuser $dbName &lt;&lt; EOF8.0.109 BEGIN TRANSACTION; -- -- I missed a couple of cases when I changed the legacy playlist -- from reporting showplaylistidnum to playlistidnum -- ALTER TABLE featureidrequestkdcs DROP CONSTRAINT featureidrequestkdcs_cosfeatureid_fkey; ALTER TABLE featureidrequestkdcs ADD CONSTRAINT featureidrequestkdcs_cosfeatureid_fkey FOREIGN KEY (cosfeatureid) REFERENCES playlist(playlistidnum) ON DELETE CASCADE; -- ALTER TABLE ticket_system_ids DROP CONSTRAINT ticket_system_ids_showplaylistidnum_fkey; ALTER TABLE ticket_system_ids RENAME showplaylistidnum TO playlistidnum; ALTER TABLE ticket_system_ids ADD CONSTRAINT ticket_system_ids_playlistidnum_fkey FOREIGN KEY (playlistidnum) REFERENCES playlist(playlistidnum) ON DELETE CASCADE; -- -- Increment the version UPDATE sys_info SET value = '8.0.109' WHERE key = 'DB VERSION'; END TRANSACTION; EOF8.0.109 fi </code></pre> <p>I'm sure there is a better way to do this, but it's worked for me so far.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115423#115423 4 Answer by Dan for Do you source control your databases? Dan 2008-09-22T15:15:38Z 2008-09-22T15:15:38Z <p>I typically build an SQL script for every change I make, and another to revert those changes, and keep those scripts under version control. </p> <p>Then we have a means to create a new up-to-date database on demand, and can easily move between revisions. Every time we do a release, we lump the scripts together (takes a bit of manual work, but it's rarely actually <em>hard</em>) so we also have a set of scripts that can convert between versions.</p> <p>Yes, before you say it, this is very similar to the stuff Rails and others do, but it seems to work pretty well, so I have no problems admitting that I shamelessly lifted the idea :)</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115483#115483 1 Answer by Min for Do you source control your databases? Min 2008-09-22T15:23:15Z 2008-09-22T15:23:15Z <p>We're in the process of moving all the databases to source control. We're using sqlcompare to script out the database (a profession edition feature, unfortunately) and putting that result into SVN.</p> <p>The success of your implementation will depend a lot on the culture and practices of your organization. People here believe in creating a database per application. There is a common set of databases that are used by most applications as well causing a lot of interdatabase dependencies (some of them are circular). Putting the database schemas into source control has been notoriously difficult because of the interdatabase dependencies that our systems have.</p> <p>Best of luck to you, the sooner you try it out the sooner you'll have your issues sorted out.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115498#115498 3 Answer by HLGEM for Do you source control your databases? HLGEM 2008-09-22T15:25:38Z 2008-09-22T15:25:38Z <p>We do source control all our dabase created objects. And just to keep developers honest (because you can create objects without them being in Source Control), our dbas periodically look for anything not in source control and if they find anything, they drop it without asking if it is ok. </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115509#115509 6 Answer by Kevin Conner for Do you source control your databases? Kevin Conner 2008-09-22T15:27:34Z 2008-09-22T15:27:34Z <p>I'm ashamed, but we don't do this at all. My project's database is 30GB so we've been lazy about it. But thanks to stacko, it's going on my list right now. Good job, website! "Better programming through shame"</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115527#115527 1 Answer by David Medinets for Do you source control your databases? David Medinets 2008-09-22T15:29:35Z 2008-09-22T15:29:35Z <p>I have used the dbdeploy tool from ThoughtWorks at <a href="http://dbdeploy.com/" rel="nofollow">http://dbdeploy.com/</a>. It encourages the use of migration scripts. Each release, we consolidated the change scripts into a single file to ease understanding and to allow DBAs to 'bless' the changes.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115625#115625 1 Answer by Adam Gibbins for Do you source control your databases? Adam Gibbins 2008-09-22T15:42:34Z 2008-09-22T15:42:34Z <p>I always check my database structure dumps into source control. Full database dumps however I normally just compress and put away for storage.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/115885#115885 0 Answer by Autocracy for Do you source control your databases? Autocracy 2008-09-22T16:25:09Z 2008-09-22T16:25:09Z <p>I version control the create script, and I use the svn version tag within it. Then, whenever I get a version that is going to be used, I create a script in a dbpatches/ directory named as the version to roll up to. The job of that script is to modify a current database without destroying the data. dbpatches/, for example, might have files named 201, 220, and 240. If the database is currently at level 201, apply patch 220, then patch 240.</p> <pre><code>DROP TABLE IF EXISTS `meta`; CREATE TABLE `meta` ( `property` varchar(255), `value` varchar(255), PRIMARY KEY (`property`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO `meta` VALUES ('version', '$Rev: 240 $'); </code></pre> <p>Don't forget to test your code before considering a patch good. Caveat emptor!</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116126#116126 0 Answer by tal for Do you source control your databases? tal 2008-09-22T17:06:05Z 2008-09-22T17:06:05Z <p>We maintain DDL (and sometime DML) scripts generated by our ER Tool (PowerAMC).</p> <p>We have a bench of shell scripts which rename the scripts starting with a number on the trunk branch. Each script is committed and tagged with the bugzilla number.</p> <p>These scripts are then at need merged within the release branches along with the application code.</p> <p>We have a table recording the scripts and their status. Each script is executed in order and recorded in this table on each install by the deploying tool.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116264#116264 2 Answer by levhita for Do you source control your databases? levhita 2008-09-22T17:30:01Z 2008-09-22T17:30:01Z <p>I use SQL CREATE scripts exported from MySQL Workbech, then using theirs "Export SQL ALTER" functionality I end up with a series of create scripts(numbered of course) and the alter scripts that can apply the changes between them. </p> <blockquote> <p>3.- Export SQL ALTER script Normally you would have to write the ALTER TABLE statements by hand now, reflecting your changes you made to the model. But you can be smart and let Workbench do the hard work for you. Simply select File -> Export -> Forward Engineer SQL ALTER Script… from the main menu.</p> <p>This will prompt you to specify the SQL CREATE file the current model should be compared to.</p> <p>Select the SQL CREATE script from step 1. The tool will then generate the ALTER TABLE script for you and you can execute this script against your database to bring it up to date.</p> <p>You can do this using the MySQL Query Browser or the mysql client.Voila! Your model and database have now been synchronized!</p> </blockquote> <p>Source: <a href="http://dev.mysql.com/workbench/?p=116" rel="nofollow">MySQL Workbench Community Edition: Guide to Schema Synchronization</a></p> <p>All this scripts of course are inside under version control.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116505#116505 1 Answer by mrharb for Do you source control your databases? mrharb 2008-09-22T18:12:06Z 2008-09-22T18:12:06Z <p>My team versions our database schema as C# classes with the rest of our code. We have a homegrown C# program (&lt;500 lines of code) that reflects the classes and creates SQL commands to build, drop and update the database. After creating the database we run sqlmetal to generate a linq mapping, which is then compiled in another project that is used to generate test data. The whole things works really well because data access is checked at compile time. We like it because the schema is stored in a .cs file which is easy to track compare in trac/svn.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116509#116509 12 Answer by killdash10 for Do you source control your databases? killdash10 2008-09-22T18:12:38Z 2008-09-22T18:12:38Z <p>Check out <a href="http://www.liquibase.org" rel="nofollow">LiquiBase</a> for managing database changes using source control.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116517#116517 2 Answer by Sam Schutte for Do you source control your databases? Sam Schutte 2008-09-22T18:13:58Z 2008-09-22T18:13:58Z <p>This has always been a big annoyance for me too - it seems like it is just way too easy to make a quick change to your development database, save it (forgetting to save a change script), and then you're stuck. You could undo what you just did and redo it to create the change script, or write it from scratch if you want of course too, though that's a lot of time spent writing scripts.</p> <p>A tool that I have used in the past that has helped with this some is SQL Delta. It will show you the differences between two databases (SQL server/Oracle I believe) and generate all the change scripts necessary to migrate A->B. Another nice thing it does is show all the differences between database content between the production (or test) DB and your development DB. Since more and more apps store configuration and state that is crucial to their execution in database tables, it can be a real pain to have change scripts that remove, add, and alter the proper rows. SQL Delta shows the rows in the database just like they would look in a Diff tool - changed, added, deleted.</p> <p>An excellent tool. Here is the link: <a href="http://www.sqldelta.com/" rel="nofollow">http://www.sqldelta.com/</a></p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/117419#117419 3 Answer by AndrewB for Do you source control your databases? AndrewB 2008-09-22T20:29:56Z 2008-09-22T20:29:56Z <p>Yes, always. You should be able to recreate your production database structure with a useful set of sample data whenever needed. If you don't, over time minor changes to keep things running get forgotten then one day you get bitten, big time. Its insurance that you might not think you need but the day you do it it worth the price 10 times over!</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/117668#117668 1 Answer by Karthik Hariharan for Do you source control your databases? Karthik Hariharan 2008-09-22T21:10:20Z 2008-09-22T21:10:20Z <p>RedGate software makes some great tools that will help you version your database. Be sure to try to have your devs build their own isolated local databases for dev work rather than rely on a "dev server" which may or may not be down at some time.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/118145#118145 1 Answer by Tom Anderson for Do you source control your databases? Tom Anderson 2008-09-22T23:06:19Z 2008-09-22T23:06:19Z <p>RedGate is great, we generate new snapshots when database changes are made (a tiny binary file) and keep that file in the projects as a resource. Whenever we need to update the database, we use RedGate's toolkit to update the database, as well as being able to create new databases from empty ones.</p> <p>RedGate also makes Data snapshots, while I haven't personally worked with them, they are just as robust.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/118890#118890 2 Answer by Robert Paulson for Do you source control your databases? Robert Paulson 2008-09-23T03:08:25Z 2008-09-23T03:08:25Z <p>FYI This was also brought up a few days ago by Dana ... <a href="http://stackoverflow.com/questions/77172/stored-proceduresdb-schema-in-source-control#77500">Stored procedures/DB schema in source control</a></p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/120190#120190 1 Answer by unknown (yahoo) for Do you source control your databases? unknown (yahoo) 2008-09-23T10:15:02Z 2008-09-23T10:15:02Z <p>I have used RedGate SQL Compare Pro for schema synchronization with script folder, then I commit all my update to version control. It works great. </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/120412#120412 0 Answer by daemonkid for Do you source control your databases? daemonkid 2008-09-23T11:28:57Z 2008-09-23T11:38:52Z <p>Your project team can have a DBA to whom every developer would forward their create alter, delete, insert/update (for master data) sql statements. DBAs would run those queries and on successfully making the required update would add those statements to a text file or a spreadsheet. Each addition can be labeled as a savepoint. Incase you revert back to a particular savepoint, just do a drop all and run the queries uptil the labelled savepoint. This approach is just a thought... a bit of fine tuning here would work for your development environment.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/157618#157618 0 Answer by pearcewg for Do you source control your databases? pearcewg 2008-10-01T13:32:38Z 2008-10-01T13:32:38Z <p>Any database interface code absolutely should go into version control (Stored Procedures, Functions, etc).</p> <p>For structure and data, it is a judgement call. I personally keep a clean structural template of my databases around, but don't store them in version control, due to the size. But storing it in version control can be very beneficial, even for just having a history.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/258402#258402 0 Answer by Matt Jenkins for Do you source control your databases? Matt Jenkins 2008-11-03T11:39:33Z 2008-11-03T11:39:33Z <p>A big problem, often overlooked, is that for larger web based systems, it is required to have a transitional period or bucket testing approach to making new releases. This makes it essential to have both rollback and a mechanism for supporting both the old and new schema in the same DB. This requires a scaffolding approach (made populist by the Agile DB folks). In this scenario, lack of process in DB source control can be a total disaster. You need old schema scripts, new schema scripts and a set of intermediate scripts, as well as a tidy up, once the system is fully on the new version (or rolled back).</p> <p>Rather than having scripts to recreate schema from scratch, what is required is a state based approach, where you need scripts purely to move the DB into the state you require, both forward and back, from version to version. Your DB becomes a series of state scripts, which can be easily source controlled and tagged along with the rest of the source.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/258421#258421 2 Answer by WW for Do you source control your databases? WW 2008-11-03T11:49:11Z 2008-11-03T11:49:11Z <p>There has been a lot of discussion about the database model itself, but we also keep the required data in .SQL files.</p> <p>For example, in order to be useful your application might need this in the install:</p> <pre><code>INSERT INTO Currency (CurrencyCode, CurrencyName) VALUES ('AUD', 'Australian Dollars'); INSERT INTO Currency (CurrencyCode, CurrencyName) VALUES ('USD', 'US Dollars'); </code></pre> <p>We would have a file called <code>currency.sql</code> under subversion. As a manual step in the build process, we compare the previous currency.sql to the latest one and write an upgrade script.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/328307#328307 4 Answer by Tom A for Do you source control your databases? Tom A 2008-11-30T01:25:49Z 2008-11-30T19:56:38Z <p>The new Database projects in Visual Studio provide source control and change scripts. </p> <p>They have a nice tool that compares databases and can generate a script that converts the schema of one into the other, or updates the data in one to match the other.</p> <p>The db schema is "shredded" to create many, many small .sql files, one per DDL command that describes the DB.</p> <p>+tom</p> <p><hr /></p> <p>Additional info 2008-11-30</p> <p>I have been using it as a developer for the past year and really like it. It makes it easy to compare my dev work to production and generate a script to use for the release. I don't know if it is missing features that DBAs need for "enterprise-type" projects.</p> <p>Because the schema is "shredded" into sql files the source control works fine.</p> <p>One gotcha is that you need to have a different mindset when you use a db project. The tool has a "db project" in VS, which is just the sql, plus an automatically generated local database which has the schema and some other admin data -- but none of your application data, plus your local dev db that you use for app data dev work. You rarely are aware of the automatically generated db, but you have to know its there so you can leave it alone :). This special db is clearly recognizable because it has a Guid in its name,</p> <p>The VS DB Project does a nice job of integrating db changes that other team members have made into your local project/associated db. but you need to take the extra step to compare the project schema with your local dev db schema and apply the mods. It makes sense, but it seems awkward at first.</p> <p>DB Projects are a very powerful tool. They not only generate scripts but can apply them immediately. Be sure not to destroy your production db with it. ;)</p> <p>I really like the VS DB projects and I expect to use this tool for all my db projects going forward.</p> <p>+tom</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/777224#777224 1 Answer by YordanGeorgiev for Do you source control your databases? YordanGeorgiev 2009-04-22T13:32:43Z 2009-04-22T13:32:43Z <p>Here is a sample poor man's solution for a trigger implementing tracking of changes on db objects ( via DDL stateements ) on a sql server 2005 / 2008 database. I contains also a simple sample of how-to enforce the usage of required someValue xml tag in the source code for each sql command ran on the database + the tracking of the current db version and type ( dev , test , qa , fb , prod) One could extend it with additional required attributes such as , etc. The code is rather long - it creates the empty database + the needed tracking table structure + required db functions and the populating trigger all running under a [ga] schema. </p> <pre><code>USE [master] GO /****** Object: Database [DBGA_DEV] Script Date: 04/22/2009 13:22:01 ******/ CREATE DATABASE [DBGA_DEV] ON PRIMARY ( NAME = N'DBGA_DEV', FILENAME = N'D:\GENAPP\DATA\DBFILES\DBGA_DEV.mdf' , SIZE = 3072KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) LOG ON ( NAME = N'DBGA_DEV_log', FILENAME = N'D:\GENAPP\DATA\DBFILES\DBGA_DEV_log.ldf' , SIZE = 6208KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) GO ALTER DATABASE [DBGA_DEV] SET COMPATIBILITY_LEVEL = 100 GO IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) begin EXEC [DBGA_DEV].[dbo].[sp_fulltext_database] @action = 'enable' end GO ALTER DATABASE [DBGA_DEV] SET ANSI_NULL_DEFAULT OFF GO ALTER DATABASE [DBGA_DEV] SET ANSI_NULLS OFF GO ALTER DATABASE [DBGA_DEV] SET ANSI_PADDING ON GO ALTER DATABASE [DBGA_DEV] SET ANSI_WARNINGS OFF GO ALTER DATABASE [DBGA_DEV] SET ARITHABORT OFF GO ALTER DATABASE [DBGA_DEV] SET AUTO_CLOSE OFF GO ALTER DATABASE [DBGA_DEV] SET AUTO_CREATE_STATISTICS ON GO ALTER DATABASE [DBGA_DEV] SET AUTO_SHRINK OFF GO ALTER DATABASE [DBGA_DEV] SET AUTO_UPDATE_STATISTICS ON GO ALTER DATABASE [DBGA_DEV] SET CURSOR_CLOSE_ON_COMMIT OFF GO ALTER DATABASE [DBGA_DEV] SET CURSOR_DEFAULT GLOBAL GO ALTER DATABASE [DBGA_DEV] SET CONCAT_NULL_YIELDS_NULL OFF GO ALTER DATABASE [DBGA_DEV] SET NUMERIC_ROUNDABORT OFF GO ALTER DATABASE [DBGA_DEV] SET QUOTED_IDENTIFIER OFF GO ALTER DATABASE [DBGA_DEV] SET RECURSIVE_TRIGGERS OFF GO ALTER DATABASE [DBGA_DEV] SET DISABLE_BROKER GO ALTER DATABASE [DBGA_DEV] SET AUTO_UPDATE_STATISTICS_ASYNC OFF GO ALTER DATABASE [DBGA_DEV] SET DATE_CORRELATION_OPTIMIZATION OFF GO ALTER DATABASE [DBGA_DEV] SET TRUSTWORTHY OFF GO ALTER DATABASE [DBGA_DEV] SET ALLOW_SNAPSHOT_ISOLATION OFF GO ALTER DATABASE [DBGA_DEV] SET PARAMETERIZATION SIMPLE GO ALTER DATABASE [DBGA_DEV] SET READ_COMMITTED_SNAPSHOT OFF GO ALTER DATABASE [DBGA_DEV] SET HONOR_BROKER_PRIORITY OFF GO ALTER DATABASE [DBGA_DEV] SET READ_WRITE GO ALTER DATABASE [DBGA_DEV] SET RECOVERY FULL GO ALTER DATABASE [DBGA_DEV] SET MULTI_USER GO ALTER DATABASE [DBGA_DEV] SET PAGE_VERIFY CHECKSUM GO ALTER DATABASE [DBGA_DEV] SET DB_CHAINING OFF GO EXEC [DBGA_DEV].sys.sp_addextendedproperty @name=N'DbType', @value=N'DEV' GO EXEC [DBGA_DEV].sys.sp_addextendedproperty @name=N'DbVersion', @value=N'0.0.1.20090414.1100' GO USE [DBGA_DEV] GO /****** Object: Schema [ga] Script Date: 04/22/2009 13:21:29 ******/ CREATE SCHEMA [ga] AUTHORIZATION [dbo] GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Contains the objects of the Generic Application database' , @level0type=N'SCHEMA',@level0name=N'ga' GO /****** Object: Table [ga].[tb_DataMeta_ObjChangeLog] Script Date: 04/22/2009 13:21:40 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [ga].[tb_DataMeta_ObjChangeLog]( [LogId] [int] IDENTITY(1,1) NOT NULL, [TimeStamp] [timestamp] NOT NULL, [DatabaseName] [varchar](256) NOT NULL, [SchemaName] [varchar](256) NOT NULL, [DbVersion] [varchar](20) NOT NULL, [DbType] [varchar](20) NOT NULL, [EventType] [varchar](50) NOT NULL, [ObjectName] [varchar](256) NOT NULL, [ObjectType] [varchar](25) NOT NULL, [Version] [varchar](50) NULL, [SqlCommand] [varchar](max) NOT NULL, [EventDate] [datetime] NOT NULL, [LoginName] [varchar](256) NOT NULL, [FirstName] [varchar](256) NULL, [LastName] [varchar](50) NULL, [ChangeDescription] [varchar](1000) NULL, [Description] [varchar](1000) NULL, [ObjVersion] [varchar](20) NOT NULL ) ON [PRIMARY] GO SET ANSI_PADDING ON GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The database version as written in the extended prop of the database' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'TABLE',@level1name=N'tb_DataMeta_ObjChangeLog', @level2type=N'COLUMN',@level2name=N'DbVersion' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'dev , test , qa , fb or prod' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'TABLE',@level1name=N'tb_DataMeta_ObjChangeLog', @level2type=N'COLUMN',@level2name=N'DbType' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The name of the object as it is registered in the sys.objects ' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'TABLE',@level1name=N'tb_DataMeta_ObjChangeLog', @level2type=N'COLUMN',@level2name=N'ObjectName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'TABLE',@level1name=N'tb_DataMeta_ObjChangeLog', @level2type=N'COLUMN',@level2name=N'Description' GO SET IDENTITY_INSERT [ga].[tb_DataMeta_ObjChangeLog] ON INSERT [ga].[tb_DataMeta_ObjChangeLog] ([LogId], [DatabaseName], [SchemaName], [DbVersion], [DbType], [EventType], [ObjectName], [ObjectType], [Version], [SqlCommand], [EventDate], [LoginName], [FirstName], [LastName], [ChangeDescription], [Description], [ObjVersion]) VALUES (3, N'DBGA_DEV', N'en', N'0.0.1.20090414.1100', N'DEV', N'DROP_TABLE', N'tb_BL_Products', N'TABLE', N' some', N'&lt;EVENT_INSTANCE&gt;&lt;EventType&gt;DROP_TABLE&lt;/EventType&gt;&lt;PostTime&gt;2009-04-22T11:03:11.880&lt;/PostTime&gt;&lt;SPID&gt;57&lt;/SPID&gt;&lt;ServerName&gt;YSG&lt;/ServerName&gt;&lt;LoginName&gt;ysg\yordgeor&lt;/LoginName&gt;&lt;UserName&gt;dbo&lt;/UserName&gt;&lt;DatabaseName&gt;DBGA_DEV&lt;/DatabaseName&gt;&lt;SchemaName&gt;en&lt;/SchemaName&gt;&lt;ObjectName&gt;tb_BL_Products&lt;/ObjectName&gt;&lt;ObjectType&gt;TABLE&lt;/ObjectType&gt;&lt;TSQLCommand&gt;&lt;SetOptions ANSI_NULLS="ON" ANSI_NULL_DEFAULT="ON" ANSI_PADDING="ON" QUOTED_IDENTIFIER="ON" ENCRYPTED="FALSE"/&gt;&lt;CommandText&gt;drop TABLE [en].[tb_BL_Products] --&lt;Version&gt; some&lt;/Version&gt;&amp;#x0D; &lt;/CommandText&gt;&lt;/TSQLCommand&gt;&lt;/EVENT_INSTANCE&gt;', CAST(0x00009BF300B6271C AS DateTime), N'ysg\yordgeor', N'Yordan', N'Georgiev', NULL, NULL, N'0.0.0') INSERT [ga].[tb_DataMeta_ObjChangeLog] ([LogId], [DatabaseName], [SchemaName], [DbVersion], [DbType], [EventType], [ObjectName], [ObjectType], [Version], [SqlCommand], [EventDate], [LoginName], [FirstName], [LastName], [ChangeDescription], [Description], [ObjVersion]) VALUES (4, N'DBGA_DEV', N'en', N'0.0.1.20090414.1100', N'DEV', N'CREATE_TABLE', N'tb_BL_Products', N'TABLE', N' 2.2.2 ', N'&lt;EVENT_INSTANCE&gt;&lt;EventType&gt;CREATE_TABLE&lt;/EventType&gt;&lt;PostTime&gt;2009-04-22T11:03:18.620&lt;/PostTime&gt;&lt;SPID&gt;57&lt;/SPID&gt;&lt;ServerName&gt;YSG&lt;/ServerName&gt;&lt;LoginName&gt;ysg\yordgeor&lt;/LoginName&gt;&lt;UserName&gt;dbo&lt;/UserName&gt;&lt;DatabaseName&gt;DBGA_DEV&lt;/DatabaseName&gt;&lt;SchemaName&gt;en&lt;/SchemaName&gt;&lt;ObjectName&gt;tb_BL_Products&lt;/ObjectName&gt;&lt;ObjectType&gt;TABLE&lt;/ObjectType&gt;&lt;TSQLCommand&gt;&lt;SetOptions ANSI_NULLS="ON" ANSI_NULL_DEFAULT="ON" ANSI_PADDING="ON" QUOTED_IDENTIFIER="ON" ENCRYPTED="FALSE"/&gt;&lt;CommandText&gt;CREATE TABLE [en].[tb_BL_Products](&amp;#x0D; [ProducId] [int] NULL,&amp;#x0D; [ProductName] [nchar](10) NULL,&amp;#x0D; [ProductDescription] [varchar](5000) NULL&amp;#x0D; ) ON [PRIMARY]&amp;#x0D; /*&amp;#x0D; &lt;Version&gt; 2.2.2 &lt;/Version&gt;&amp;#x0D; &amp;#x0D; */&amp;#x0D; &lt;/CommandText&gt;&lt;/TSQLCommand&gt;&lt;/EVENT_INSTANCE&gt;', CAST(0x00009BF300B62F07 AS DateTime), N'ysg\yordgeor', N'Yordan', N'Georgiev', NULL, NULL, N'0.0.0') INSERT [ga].[tb_DataMeta_ObjChangeLog] ([LogId], [DatabaseName], [SchemaName], [DbVersion], [DbType], [EventType], [ObjectName], [ObjectType], [Version], [SqlCommand], [EventDate], [LoginName], [FirstName], [LastName], [ChangeDescription], [Description], [ObjVersion]) VALUES (5, N'DBGA_DEV', N'en', N'0.0.1.20090414.1100', N'DEV', N'DROP_TABLE', N'tb_BL_Products', N'TABLE', N' 2.2.2 ', N'&lt;EVENT_INSTANCE&gt;&lt;EventType&gt;DROP_TABLE&lt;/EventType&gt;&lt;PostTime&gt;2009-04-22T11:25:12.620&lt;/PostTime&gt;&lt;SPID&gt;57&lt;/SPID&gt;&lt;ServerName&gt;YSG&lt;/ServerName&gt;&lt;LoginName&gt;ysg\yordgeor&lt;/LoginName&gt;&lt;UserName&gt;dbo&lt;/UserName&gt;&lt;DatabaseName&gt;DBGA_DEV&lt;/DatabaseName&gt;&lt;SchemaName&gt;en&lt;/SchemaName&gt;&lt;ObjectName&gt;tb_BL_Products&lt;/ObjectName&gt;&lt;ObjectType&gt;TABLE&lt;/ObjectType&gt;&lt;TSQLCommand&gt;&lt;SetOptions ANSI_NULLS="ON" ANSI_NULL_DEFAULT="ON" ANSI_PADDING="ON" QUOTED_IDENTIFIER="ON" ENCRYPTED="FALSE"/&gt;&lt;CommandText&gt;drop TABLE [en].[tb_BL_Products] &amp;#x0D; &lt;/CommandText&gt;&lt;/TSQLCommand&gt;&lt;/EVENT_INSTANCE&gt;', CAST(0x00009BF300BC32F1 AS DateTime), N'ysg\yordgeor', N'Yordan', N'Georgiev', NULL, NULL, N'0.0.0') INSERT [ga].[tb_DataMeta_ObjChangeLog] ([LogId], [DatabaseName], [SchemaName], [DbVersion], [DbType], [EventType], [ObjectName], [ObjectType], [Version], [SqlCommand], [EventDate], [LoginName], [FirstName], [LastName], [ChangeDescription], [Description], [ObjVersion]) VALUES (6, N'DBGA_DEV', N'en', N'0.0.1.20090414.1100', N'DEV', N'CREATE_TABLE', N'tb_BL_Products', N'TABLE', N' 2.2.2 ', N'&lt;EVENT_INSTANCE&gt;&lt;EventType&gt;CREATE_TABLE&lt;/EventType&gt;&lt;PostTime&gt;2009-04-22T11:25:19.053&lt;/PostTime&gt;&lt;SPID&gt;57&lt;/SPID&gt;&lt;ServerName&gt;YSG&lt;/ServerName&gt;&lt;LoginName&gt;ysg\yordgeor&lt;/LoginName&gt;&lt;UserName&gt;dbo&lt;/UserName&gt;&lt;DatabaseName&gt;DBGA_DEV&lt;/DatabaseName&gt;&lt;SchemaName&gt;en&lt;/SchemaName&gt;&lt;ObjectName&gt;tb_BL_Products&lt;/ObjectName&gt;&lt;ObjectType&gt;TABLE&lt;/ObjectType&gt;&lt;TSQLCommand&gt;&lt;SetOptions ANSI_NULLS="ON" ANSI_NULL_DEFAULT="ON" ANSI_PADDING="ON" QUOTED_IDENTIFIER="ON" ENCRYPTED="FALSE"/&gt;&lt;CommandText&gt;CREATE TABLE [en].[tb_BL_Products](&amp;#x0D; [ProducId] [int] NULL,&amp;#x0D; [ProductName] [nchar](10) NULL,&amp;#x0D; [ProductDescription] [varchar](5000) NULL&amp;#x0D; ) ON [PRIMARY]&amp;#x0D; /*&amp;#x0D; &lt;Version&gt; 2.2.2 &lt;/Version&gt;&amp;#x0D; &amp;#x0D; */&amp;#x0D; &lt;/CommandText&gt;&lt;/TSQLCommand&gt;&lt;/EVENT_INSTANCE&gt;', CAST(0x00009BF300BC3A69 AS DateTime), N'ysg\yordgeor', N'Yordan', N'Georgiev', NULL, NULL, N'0.0.0') SET IDENTITY_INSERT [ga].[tb_DataMeta_ObjChangeLog] OFF /****** Object: Table [ga].[tb_BLSec_LoginsForUsers] Script Date: 04/22/2009 13:21:40 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [ga].[tb_BLSec_LoginsForUsers]( [LoginsForUsersId] [int] IDENTITY(1,1) NOT NULL, [LoginName] [nvarchar](100) NOT NULL, [FirstName] [varchar](100) NOT NULL, [SecondName] [varchar](100) NULL, [LastName] [varchar](100) NOT NULL, [DomainName] [varchar](100) NOT NULL ) ON [PRIMARY] GO SET ANSI_PADDING ON GO SET IDENTITY_INSERT [ga].[tb_BLSec_LoginsForUsers] ON INSERT [ga].[tb_BLSec_LoginsForUsers] ([LoginsForUsersId], [LoginName], [FirstName], [SecondName], [LastName], [DomainName]) VALUES (1, N'ysg\yordgeor', N'Yordan', N'Stanchev', N'Georgiev', N'yordgeor') SET IDENTITY_INSERT [ga].[tb_BLSec_LoginsForUsers] OFF /****** Object: Table [en].[tb_BL_Products] Script Date: 04/22/2009 13:21:40 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [en].[tb_BL_Products]( [ProducId] [int] NULL, [ProductName] [nchar](10) NULL, [ProductDescription] [varchar](5000) NULL ) ON [PRIMARY] GO SET ANSI_PADDING ON GO /****** Object: StoredProcedure [ga].[procUtils_SqlCheatSheet] Script Date: 04/22/2009 13:21:37 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [ga].[procUtils_SqlCheatSheet] as set nocount on --what was the name of the table with something like role /* SELECT * from sys.tables where [name] like '%POC%' */ -- what are the columns of this table /* select column_name , DATA_TYPE , CHARACTER_MAXIMUM_LENGTH, table_name from Information_schema.columns where table_name='tbGui_ExecutePOC' */ -- find proc --what was the name of procedure with something like role /* select * from sys.procedures where [name] like '%ext%' exec sp_HelpText procName */ /* exec sp_helpText procUtils_InsertGenerator */ --how to list all databases in sql server /* SELECT database_id AS ID, NULL AS ParentID, name AS Text FROM sys.databases ORDER BY [name] */ --HOW-TO LIST ALL TABLES IN A SQL SERVER 2005 DATABASE /* SELECT TABLE_NAME FROM [POC].INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_NAME &lt;&gt; 'dtproperties' ORDER BY TABLE_NAME */ --HOW-TO ENABLE XP_CMDSHELL START ------------------------------------------------------------------------- -- configure verbose mode temporarily -- EXECUTE sp_configure 'show advanced options', 1 -- RECONFIGURE WITH OVERRIDE --GO --ENABLE xp_cmdshell -- EXECUTE sp_configure 'xp_cmdshell', '1' -- RECONFIGURE WITH OVERRIDE -- EXEC SP_CONFIGURE 'show advanced option', '1'; -- SHOW THE CONFIGURATION -- EXEC SP_CONFIGURE; --turn show advance options off -- GO --EXECUTE sp_configure 'show advanced options', 0 -- RECONFIGURE WITH OVERRIDE -- GO --HOW-TO ENABLE XP_CMDSHELL END ------------------------------------------------------------------------- --HOW-TO IMPLEMENT SLEEP -- sleep for 10 seconds -- WAITFOR DELAY '00:00:10' SELECT * FROM My_Table /* LIST ALL PRIMARY KEYS SELECT INFORMATION_SCHEMA.TABLE_CONSTRAINTS.TABLE_NAME AS TABLE_NAME, INFORMATION_SCHEMA.KEY_COLUMN_USAGE.COLUMN_NAME AS COLUMN_NAME, REPLACE(INFORMATION_SCHEMA.TABLE_CONSTRAINTS.CONSTRAINT_TYPE,' ', '_') AS CONSTRAINT_TYPE FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE ON INFORMATION_SCHEMA.TABLE_CONSTRAINTS.CONSTRAINT_NAME = INFORMATION_SCHEMA.KEY_COLUMN_USAGE.CONSTRAINT_NAME WHERE INFORMATION_SCHEMA.TABLE_CONSTRAINTS.TABLE_NAME &lt;&gt; N'sysdiagrams' ORDER BY INFORMATION_SCHEMA.TABLE_CONSTRAINTS.TABLE_NAME ASC */ --HOW-TO COPY TABLE AND THE WHOLE TABLE DATA , COPY TABLE FROM DB TO DB --==================================================START /* use Poc_Dev go drop table tbGui_LinksVisibility use POc_test go select * INTO [POC_Dev].[ga].[tbGui_LinksVisibility] from [POC_TEST].[ga].[tbGui_LinksVisibility] */ --HOW-TO COPY TABLE AND THE WHOLE TABLE DATA , COPY TABLE FROM DB TO DB --====================================================END --=================================================== SEE TABLE METADATA START /* SELECT c.name AS [COLUMN_NAME], sc.data_type AS [DATA_TYPE], [value] AS [DESCRIPTION] , c.max_length as [MAX_LENGTH] , c.is_nullable AS [OPTIONAL] , c.is_identity AS [IS_PRIMARY_KEY] FROM sys.extended_properties AS ep INNER JOIN sys.tables AS t ON ep.major_id = t.object_id INNER JOIN sys.columns AS c ON ep.major_id = c.object_id AND ep.minor_id = c.column_id INNER JOIN INFORMATION_SCHEMA.COLUMNS sc ON t.name = sc.table_name and c.name = sc.column_name WHERE class = 1 and t.name = 'tbGui_ExecutePOC' ORDER BY SC.DATA_TYPE */ --=================================================== SEE TABLE METADATA END /* select * from Information_schema.columns select table_name , column_name from Information_schema.columns where table_name='tbGui_Wizards' */ --=================================================== LIST ALL TABLES AND THEIR DESCRIPTOINS START /* SELECT T.name AS TableName, CAST(Props.value AS varchar(1000)) AS TableDescription FROM sys.tables AS T LEFT OUTER JOIN (SELECT class, class_desc, major_id, minor_id, name, value FROM sys.extended_properties WHERE (minor_id = 0) AND (class = 1)) AS Props ON T.object_id = Props.major_id WHERE (T.type = 'U') AND (T.name &lt;&gt; N'sysdiagrams') ORDER BY TableName */ --=================================================== LIST ALL TABLES AND THEIR DESCRIPTOINS START --=================================================== LIST ALL OBJECTS FROM DB START /* use DB --HOW-TO LIST ALL PROCEDURE IN A DATABASE select s.name from sysobjects s where type = 'P' --HOW-TO LIST ALL TRIGGERS BY NAME IN A DATABASE select s.name from sysobjects s where type = 'TR' --HOW-TO LIST TABLES IN A DATABASE select s.name from sysobjects s where type = 'U' --how-to list all system tables in a database select s.name from sysobjects s where type = 's' --how-to list all the views in a database select s.name from sysobjects s where type = 'v' */ /* Similarly you can find out other objects created by user, simple change type = C = CHECK constraint D = Default or DEFAULT constraint F = FOREIGN KEY constraint L = Log FN = Scalar function IF = In-lined table-function P = Stored procedure PK = PRIMARY KEY constraint (type is K) RF = Replication filter stored procedure S = System table TF = Table function TR = Trigger U = User table ( this is the one I discussed above in the example) UQ = UNIQUE constraint (type is K) V = View X = Extended stored procedure */ --=================================================== HOW-TO SEE ALL MY PERMISSIONS START /* SELECT * FROM fn_my_permissions(NULL, 'SERVER'); USE poc_qa; SELECT * FROM fn_my_permissions (NULL, 'database'); GO */ --=================================================== HOW-TO SEE ALL MY PERMISSIONS END /* --find table use poc_dev go select s.name from sysobjects s where type = 'u' and s.name like '%Visibility%' select * from tbGui_LinksVisibility */ /* find cursor use poc go DECLARE @procName varchar(100) DECLARE @cursorProcNames CURSOR SET @cursorProcNames = CURSOR FOR select name from sys.procedures where modify_date &gt; '2009-02-05 13:12:15.273' order by modify_date desc OPEN @cursorProcNames FETCH NEXT FROM @cursorProcNames INTO @procName WHILE @@FETCH_STATUS = 0 BEGIN set nocount off; exec sp_HelpText @procName --- or print them -- print @procName FETCH NEXT FROM @cursorProcNames INTO @procName END CLOSE @cursorProcNames select @@error */ /* -- SEE STORED PROCEDURE EXT PROPS SELECT ep.name as 'EXT_PROP_NAME' , SP.NAME , [value] as 'DESCRIPTION' FROM sys.extended_properties as ep left join sys.procedures as sp on sp.object_id = ep.major_id where sp.type='P' -- what the hell I ve been doing lately on sql server 2005 / 2008 select o.name , (SELECT [definition] AS [text()] FROM sys.all_sql_modules where sys.all_sql_modules.object_id=a.object_id FOR XML PATH(''), TYPE) AS Statement_Text , a.object_id, o.modify_date from sys.all_sql_modules a left join sys.objects o on a.object_id=o.object_id order by 4 desc -- GET THE RIGHT LANG SCHEMA START DECLARE @template AS varchar(max) SET @template = 'SELECT * FROM {object_name}' DECLARE @object_name AS sysname SELECT @object_name = QUOTENAME(s.name) + '.' + QUOTENAME(o.name) FROM sys.objects o INNER JOIN sys.schemas s ON s.schema_id = o.schema_id WHERE o.object_id = OBJECT_ID(QUOTENAME(@LANG) + '.[TestingLanguagesInNameSpacesDelMe]') IF @object_name IS NOT NULL BEGIN DECLARE @sql AS varchar(max) SET @sql = REPLACE(@template, '{object_name}', @object_name) EXEC (@sql) END -- GET THE RIGHT LANG SCHEMA END -- SEE STORED PROCEDURE EXT PROPS end*/ set nocount off GO EXEC sys.sp_addextendedproperty @name=N'AuthorName', @value=N'Yordan Georgiev' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'PROCEDURE',@level1name=N'procUtils_SqlCheatSheet' GO EXEC sys.sp_addextendedproperty @name=N'ProcDescription', @value=N'TODO:ADD HERE DESCRPIPTION' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'PROCEDURE',@level1name=N'procUtils_SqlCheatSheet' GO EXEC sys.sp_addextendedproperty @name=N'ProcVersion', @value=N'0.1.0.20090406.1317' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'PROCEDURE',@level1name=N'procUtils_SqlCheatSheet' GO /****** Object: UserDefinedFunction [ga].[GetDbVersion] Script Date: 04/22/2009 13:21:42 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [ga].[GetDbVersion]() RETURNS VARCHAR(20) BEGIN RETURN convert(varchar(20) , (select value from sys.extended_properties where name='DbVersion' and class_desc='DATABASE') ) END GO EXEC sys.sp_addextendedproperty @name=N'AuthorName', @value=N'Yordan Georgiev' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'FUNCTION',@level1name=N'GetDbVersion' GO EXEC sys.sp_addextendedproperty @name=N'ChangeDescription', @value=N'Initial creation' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'FUNCTION',@level1name=N'GetDbVersion' GO EXEC sys.sp_addextendedproperty @name=N'CreatedWhen', @value=N'getDate()' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'FUNCTION',@level1name=N'GetDbVersion' GO EXEC sys.sp_addextendedproperty @name=N'Description', @value=N'Gets the current version of the database ' , @level0type=N'SCHEMA',@level0name=N'ga', @level1type=N'FUNCTION',@level1name=N'GetDbVersion' GO /****** Object: UserDefinedFunction [ga].[GetDbType] Script Date: 04/22/2009 13:21:42 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [ga].[GetDbType]() RETURNS VARCHAR(30) BEGIN RETURN convert(varchar(30) , (select value from sys.extended_properties where name='DbType' and class_desc='DATABASE') ) END GO /****** Object: Default [DF_tb_DataMeta_ObjChangeLog_DbVersion] Script Date: 04/22/2009 13:21:40 ******/ ALTER TABLE [ga].[tb_DataMeta_ObjChangeLog] ADD CONSTRAINT [DF_tb_DataMeta_ObjChangeLog_DbVersion] DEFAULT ('select ga.GetDbVersion()') FOR [DbVersion] GO /****** Object: Default [DF_tb_DataMeta_ObjChangeLog_EventDate] Script Date: 04/22/2009 13:21:40 ******/ ALTER TABLE [ga].[tb_DataMeta_ObjChangeLog] ADD CONSTRAINT [DF_tb_DataMeta_ObjChangeLog_EventDate] DEFAULT (getdate()) FOR [EventDate] GO /****** Object: Default [DF_tb_DataMeta_ObjChangeLog_ObjVersion] Script Date: 04/22/2009 13:21:40 ******/ ALTER TABLE [ga].[tb_DataMeta_ObjChangeLog] ADD CONSTRAINT [DF_tb_DataMeta_ObjChangeLog_ObjVersion] DEFAULT ('0.0.0') FOR [ObjVersion] GO /****** Object: DdlTrigger [trigMetaDoc_TraceDbChanges] Script Date: 04/22/2009 13:21:29 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO create trigger [trigMetaDoc_TraceDbChanges] on database for create_procedure, alter_procedure, drop_procedure, create_table, alter_table, drop_table, create_function, alter_function, drop_function , create_trigger , alter_trigger , drop_trigger as set nocount on declare @data xml set @data = EVENTDATA() declare @DbVersion varchar(20) set @DbVersion =(select ga.GetDbVersion()) declare @DbType varchar(20) set @DbType =(select ga.GetDbType()) declare @DbName varchar(256) set @DbName =@data.value('(/EVENT_INSTANCE/DatabaseName)[1]', 'varchar(256)') declare @EventType varchar(256) set @EventType =@data.value('(/EVENT_INSTANCE/EventType)[1]', 'varchar(50)') declare @ObjectName varchar(256) set @ObjectName = @data.value('(/EVENT_INSTANCE/ObjectName)[1]', 'varchar(256)') declare @ObjectType varchar(25) set @ObjectType = @data.value('(/EVENT_INSTANCE/ObjectType)[1]', 'varchar(25)') declare @TSQLCommand varchar(max) set @TSQLCommand = @data.value('(/EVENT_INSTANCE/TSQLCommand)[1]', 'varchar(max)') declare @opentag varchar(4) set @opentag= '&amp;lt;' declare @closetag varchar(4) set @closetag= '&amp;gt;' declare @newDataTxt varchar(max) set @newDataTxt= cast(@data as varchar(max)) set @newDataTxt = REPLACE ( REPLACE(@newDataTxt , @opentag , '&lt;') , @closetag , '&gt;') -- print @newDataTxt declare @newDataXml xml set @newDataXml = CONVERT ( xml , @newDataTxt) declare @Version varchar(50) set @Version = @newDataXml.value('(/EVENT_INSTANCE/TSQLCommand/CommandText/Version)[1]', 'varchar(50)') -- if we are dropping take the version from the existing object if ( SUBSTRING(@EventType , 0 , 5)) = 'DROP' set @Version =( select top 1 [Version] from ga.tb_DataMeta_ObjChangeLog where ObjectName=@ObjectName order by [LogId] desc) declare @LoginName varchar(256) set @LoginName = @data.value('(/EVENT_INSTANCE/LoginName)[1]', 'varchar(256)') declare @FirstName varchar(50) set @FirstName= (select [FirstName] from [ga].[tb_BLSec_LoginsForUsers] where [LoginName] = @LoginName) declare @LastName varchar(50) set @LastName = (select [LastName] from [ga].[tb_BLSec_LoginsForUsers] where [LoginName] = @LoginName) declare @SchemaName sysname set @SchemaName = @data.value('(/EVENT_INSTANCE/SchemaName)[1]', 'sysname'); --declare @Description xml --set @Description = @data.query('(/EVENT_INSTANCE/TSQLCommand/text())') --print 'VERSION IS ' + @Version --print @newDataTxt --print cast(@data as varchar(max)) -- select column_name from information_schema.columns where table_name ='tb_DataMeta_ObjChangeLog' insert into [ga].[tb_DataMeta_ObjChangeLog] ( [DatabaseName] , [SchemaName], [DbVersion] , [DbType], [EventType], [ObjectName], [ObjectType] , [Version], [SqlCommand] , [LoginName] , [FirstName], [LastName] ) values( @DbName, @SchemaName, @DbVersion, @DbType, @EventType, @ObjectName, @ObjectType , @Version, @newDataTxt, @LoginName , @FirstName , @LastName ) GO SET ANSI_NULLS OFF GO SET QUOTED_IDENTIFIER OFF GO DISABLE TRIGGER [trigMetaDoc_TraceDbChanges] ON DATABASE GO /****** Object: DdlTrigger [trigMetaDoc_TraceDbChanges] Script Date: 04/22/2009 13:21:29 ******/ Enable Trigger [trigMetaDoc_TraceDbChanges] ON Database GO </code></pre> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/796433#796433 0 Answer by cookiecaper for Do you source control your databases? cookiecaper 2009-04-28T06:13:39Z 2009-04-28T06:13:39Z <p>Yes, of course. We generate dumps of our PostgreSQL schemas whenever there's a change and check it in. It's already saved us many times, and I've only been at my job a few months.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/796898#796898 1 Answer by drfrog for Do you source control your databases? drfrog 2009-04-28T09:00:01Z 2009-04-28T09:00:01Z <p>funny , i was thinking why no one has built version control into a database</p> <p>there has been many times in doing database management where it would have been nice to be able to do a checkin so i could roll back to a previous revision</p> <p>yes transactions do this to a certain extent in a temporary or short term way , but i can still see the benefit to having vcs right in the database and be able to roll back to a previous revision if a database management path doesnt work </p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/843989#843989 1 Answer by Karen Lopez for Do you source control your databases? Karen Lopez 2009-05-09T20:25:48Z 2009-05-09T20:25:48Z <p>We version and source control everything surrounding our databases: </p> <ul> <li>DDL (create and alters)</li> <li>DML (reference data, codes, etc.)</li> <li>Data Model changes (using ERwin or ER/Studio)</li> <li>Database configuration changes (permissions, security objects, general config changes)</li> </ul> <p>We do all this with automated jobs using Change Manager and some custom scripts. We have Change Manager monitoring these changes and notifying when they are done.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/858580#858580 0 Answer by Itamar for Do you source control your databases? Itamar 2009-05-13T15:14:08Z 2009-06-13T15:44:27Z <p>Dear friends,</p> <p>You are talking about coding and finding the best way for source control, but theres a much easier way!</p> <p>SQL tools is what we doing, and we have the 1st and the best third party tool for <a href="http://nobhillsoft.com/Randolph.aspx" rel="nofollow">SQL Version control</a></p> <p>This tool is a unique solution that revolutionizes the way version control and change management is done for SQL Server. It shifts the responsibility for versioning from the users to the software. Its light-weight, easy to use tool that runs in the background and keeps track of all your databases schema and data changes over time, and enables full review of databases' history, and full rollback to any point in time, as well as optionally push changes into Subversion or SourceSafe.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/858645#858645 0 Answer by Sliff for Do you source control your databases? Sliff 2009-05-13T15:29:19Z 2009-05-13T15:29:19Z <p>In a previous employ, we had a good system for versioning the database (that said there was still room for improvement).</p> <p>All create and update scripts were version controlled, further to this each distinct change (or set of changes) to the database was given it's own version number. </p> <p>Each new build of the (server portion) of our software had knowledge of what database version it needed to work with. Therefore after an upgrade the server would refuse client connections until it had been updated to the correct database version. This in turn was straightforward with a utility on the server that would run the appropriate update scripts.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/896430#896430 3 Answer by Leigh Pyle for Do you source control your databases? Leigh Pyle 2009-05-22T05:04:44Z 2009-05-22T05:04:44Z <p>I use <a href="http://schemabank.com" rel="nofollow">SchemaBank</a> to version control all my database schema changes:</p> <ul> <li>from day 1, I import my db schema dump into it </li> <li>i started to change my schema design using a web browser (because they are SaaS / cloud-based)</li> <li>when i want to update my db server, i generate the change (SQL) script from it and apply to the db. In Schemabank, they mandate me to commit my work as a version before I can generate an update script. I like this kind of practice so that I can always trace back when I need to.</li> </ul> <p>Our team rule is NEVER touch the db server directly without storing the design work first. But it happens, somebody might be tempted to break the rule, in sake of convenient. We would import the schema dump again into schemabank and let it do the diff and bash someone if a discrepancy is found. Although we could generate the alter scripts from it to make our db and schema design in sync, we just hate that.</p> <p>By the way, they also let us create branches within the version control tree so that I can maintain one for staging and one for production. And one for coding sandbox.</p> <p>A pretty neat web-based schema design tool with version control n change management.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/896463#896463 0 Answer by ammoQ for Do you source control your databases? ammoQ 2009-05-22T05:17:13Z 2009-05-22T05:17:13Z <p>Sadly, I've seen more than one team developing PL/SQL programs (stored procedures in Oracle) - sometimes ten thousands LOC - just by editing the code in TOAD (a database tool), without even saving the source to files (except for deployment). Even if the database is backuped regulary (wouldn't take that for granted, though), the only way to retrieve an old version of a stored procedure is to restore the whole database, which is many GB large. And of course sometimes concurrent changes in one file lead to loss of work, when more than one developer works on the same project.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/900583#900583 1 Answer by Jeff Moser for Do you source control your databases? Jeff Moser 2009-05-23T00:58:15Z 2009-05-23T00:58:15Z <p>"<a href="http://www.viget.com/extend/backup-your-database-in-git/" rel="nofollow">Short version: dump your production database into a git repository for an instant backup solution.</a>"</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/1092351#1092351 0 Answer by Nathan Rozentals for Do you source control your databases? Nathan Rozentals 2009-07-07T13:30:44Z 2009-07-07T13:30:44Z <p>I believe that every DB should be under source control, and developers should have an easy way to create their local database from scratch. Inspired by Visual Studio for Database Professionals, I've created an open-source tool that scripts MS SQL databases, and provides and easy way of deploying them to your local DB engine. Try <a href="http://dbsourcetools.codeplex.com/" rel="nofollow">http://dbsourcetools.codeplex.com/</a> . Have fun, - Nathan.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/1450831#1450831 0 Answer by jds for Do you source control your databases? jds 2009-09-20T11:32:31Z 2009-09-20T11:32:31Z <p>I use ActiveRecord Migrations. This Ruby gem can be used outside of a Rails project and there are adapters to handle most databases you'll come across. My tip: if you are able to run your project off Postgres, you get transactional schema migrations. That means you don't end up with a broken database if a migration only half-applies.</p> http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/1450839#1450839 0 Answer by MathGladiator for Do you source control your databases? MathGladiator 2009-09-20T11:37:11Z 2009-09-20T11:37:11Z <p>One of Kira's prime use cases is database upgrades by explicitly specify the schema outside the database as code. It then can manage the database and upgrade it to any version from any version.</p>