vote up 11 vote down star
19

How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process?

I am interested in conventions for versioning database schema along with the source code. Perhaps a pre-commit hook that diffs the schema?

Also, what options for diffing deltas exist aside from DbDeply?

EDIT: seeing the answers I would like to clarify that I am familiar with the standard scheme for running a database migration using deltas. My question is about creating the deltas themselves, preferably automatically.

Also, the versioning is for PHP and MySQL if it makes a difference. (No Ruby solutions please).

flag

25% accept rate

10 Answers

vote up 12 vote down check

See

Is there a version control system for database structure changes?

How do I version my MS SQL database in SVN?

and Jeff's article

Get Your Database Under Version Control

I feel your pain, and I wish there were a better answer. This might be closer to what you were looking for.

Mechanisms for tracking DB schema changes

Generally, I feel there is no adequate, accepted solution to this, and I roll my own in this area.

link|flag
As you can tell from my question, I am aware of the concept of deltas. My question is about conventions for creating those, preferably automatically. – Eran Galperin Oct 6 '08 at 18:10
I guess I'll be rolling my own then... ;) – Eran Galperin Oct 9 '08 at 5:09
vote up 0 vote down

If you are looking for 3rd party tools, try one of Nobhill's, the SQL Version Control tool or the DB compare tool .

link|flag
vote up 0 vote down

hi, I also developed a set of PHP scripts where developers can submit their deltasql scripts to a central repository.

In one of the database tables (called TBSYNCHRONIZE), I store the version number of the latest executed script, so I can upgrade any database easily by using the web interface or a client developed on purpose for Eclipse.

The web interface allows to manage several projects. It supports also database "branches".

You can test the application at http://www.gpu-grid.net/deltasql (if you login as admin with password testdbsync). The application is open source and can be downloaded here: http://sourceforge.net/projects/deltasql

deltasql is used productively in Switzerland and India, and is popular in Japan.

link|flag
vote up 0 vote down

I'm not one to toot my own horn, but I've developed an internal web app to track changes to database schemas and create versioned update scripts.

This tool is called Brazil and is now open source under a MIT license. Brazil is ruby / ruby on rails based and supports change deployment to any database that Ruby DBI supports (MySQL, ODBC, Oracle, Postgres, SQLite).

Support for putting the update scripts in version control is planned.

link|flag
Brazil looks pretty good, too bad I'm using mainly PHP. Ever considered porting the system? – Eran Galperin Jan 1 '09 at 20:26
vote up 0 vote down

I use Firebird database for most development and I use FlameRobin administration tool for it. It has a nice option to log all changes. It can log everything to a one big file, or one file per database change. I use this second option, and then I store each script in version control software - earlier I used Subversion, now I use Git.

I assume you can find some MySQL tool that has the same logging feature like FlameRobin does for Firebird.

In one of database tables, I store the version number of the database structure, so I can upgrade any database easily. I also wrote a simple PHP script that executes those SQL scripts one by one on any target database (database path and username/password are supplied on the command line).

There's also an option to log all DML (insert, update delete) statements, and I activate this while modifying some 'default' data that each database contains.

I wrote a nice white paper on how I do all this in detail. You can download the paper in .pdf format along with demo PHP scripts from here.

link|flag
vote up 0 vote down

I am interested in this topic too.

There are some discussions on this topic in the Django wiki.

Interestingly, it looks like CakePHP has schema versioning built-in using just cake schema generate command. Has anybody used it?

link|flag
From what I read about cake's solution - it is versioning in a very basic sense, however it has no diffing capabilities so it is of no use to me. – Eran Galperin Oct 7 '08 at 1:47
vote up 1 vote down

You didn't mention which RDBMS you're using, but if it's MS SQL Server, Red-Gate's SQL Compare has been indispensable to us in creating deltas between object creation scripts.

link|flag
It's for Mysql, I've updated my question – Eran Galperin Oct 6 '08 at 18:22
vote up 1 vote down

I don't manage deltas. I make changes to a master database and have a tool that creates an XML based build script based on the master database.

When it comes time to upgrade an existing database I have a program that uses the XML based build script to create a new database and the bare tables. I then copy the data over from the old database using INSERT INTO x SELECT FROM y and then apply all indexes, constraints and triggers.

New tables, new columns, deleted columns all get handled automatically and with a few little tricks to adjust the copy routine I can handle column renames, column type changes and other basic refactorings.

I wouldn't recommend this solution on a database with a huge amount of data but I regularly update a database that is over 1GB with 400 tables.

link|flag
This sounds somewhat cumbersome, especially when dealing with multiple developers. Also the build process sounds demanding, and I would like to be as simple as possible. – Eran Galperin Oct 6 '08 at 18:18
I admit it took a while to get right but now it requires almost no effort to prep an upgrade and even less to perform one. Also, one thing I like is that I can do interim hotfix changes and it has no impact on the upgrade procedure. Each upgrade is a fresh new DB. – Darrel Miller Oct 6 '08 at 18:25
vote up 2 vote down

You might take a look at another, similar thread: How do I version my MS SQL database in SVN?.

link|flag
vote up 0 vote down

We're exporting the data to a portable format (using our toolchain), then importing it to a new schema. no need for delta SQL. Highly recommended.

link|flag
What is this portable format? and how do you import it into the new schema applying only the differences from the previous version? – Eran Galperin Oct 6 '08 at 18:11

Your Answer

Get an OpenID
or

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