Best database independent SQL DDL utility? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:57:49Z http://stackoverflow.com/feeds/question/431875 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility 3 Best database independent SQL DDL utility? Seth Reno 2009-01-10T22:20:47Z 2009-01-11T11:28:58Z <p>I'm working on a project for the .net platform and would like to support multiple database types. I would like to keep the DDL under source control in a generic format then convert it to database specific DDL for deployment.</p> <p>So I'm looking for utilities that will convert generic DDL into database specific DDL. Ideally it would support MSSQL 05/08, MySQL, Oracle, Postgres, &amp; DB2 out of the box. </p> <p>Here are the tools that I've found so far:</p> <ol> <li><a href="http://xml2ddl.berlios.de/" rel="nofollow">XML to DDL</a> <ul> <li>No built in support for MSSQL.</li> </ul></li> <li><a href="http://db.apache.org/ddlutils/" rel="nofollow">DdlUtils</a> <ul> <li>No command line utility. Must be called from java or ant scripts. </li> </ul></li> <li><a href="http://api.rubyonrails.org/classes/ActiveRecord/Migration.html" rel="nofollow">ActiveRecord::Migration</a> <ul> <li>No support for foreign keys</li> <li>Not sure how to integrate with .net project.</li> </ul></li> </ol> <p>Does anyone have experience with those I've mentioned or know of others?</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/431905#431905 1 Answer by ninesided for Best database independent SQL DDL utility? ninesided 2009-01-10T22:47:35Z 2009-01-10T22:47:35Z <p>The only one that I know of that has support for SQL Server is <a href="http://sqlfairy.sourceforge.net/" rel="nofollow">SQLFairy</a>. It's written in Perl and is pretty feature rich. XML2DDL is pretty good too, but if it doesn't support your DBMS of choice it's not really viable.</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/431907#431907 0 Answer by Ray Booysen for Best database independent SQL DDL utility? Ray Booysen 2009-01-10T22:49:44Z 2009-01-10T22:49:44Z <p>Is it a must-have feature that your application is completely database agnostic? It seems a far stretch to believe that you need to put this much work into supporting this many databases. On top of the fact your data layer is going to be incredibly complex as there are subtle differences in each RDBMS.</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/431922#431922 1 Answer by MandyK for Best database independent SQL DDL utility? MandyK 2009-01-10T23:00:08Z 2009-01-10T23:00:08Z <p>NHibernate's <a href="http://hibernate.org/hib_docs/nhibernate/html/toolsetguide.html" rel="nofollow">SchemaExport tool</a> can generate an appropriate DDL from the OR mappings for any of NHibernate's supported DBMS dialects. However, as others have implied, if you're working at that level you're really restricted to the rather thin common denominator between DBMSes.</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/431923#431923 0 Answer by Seth Reno for Best database independent SQL DDL utility? Seth Reno 2009-01-10T23:01:51Z 2009-01-10T23:01:51Z <p>I don't have to support all of those databases. This is just a pet project and I wanted to find out what it would take. I'm hoping that I can find a way to do it without much more work than supporting a single database. </p> <p>I haven't started coding yet, but I'm planning on using ODBC so I wouldn't expect my data layer to be any more complex than if I wrote it for a single RDBMS. Is this naive?</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/431977#431977 0 Answer by devio for Best database independent SQL DDL utility? devio 2009-01-10T23:35:56Z 2009-01-10T23:35:56Z <p>You may succeed in getting an abstract representation of tables and their relationships - but how do you deal with views, stored procedures, triggers etc?</p> http://stackoverflow.com/questions/431875/best-database-independent-sql-ddl-utility/432774#432774 1 Answer by Mike Woodhouse for Best database independent SQL DDL utility? Mike Woodhouse 2009-01-11T11:28:58Z 2009-01-11T11:28:58Z <p>I've successfully used <a href="http://www.ruby-lang.org/en/" rel="nofollow">Ruby</a>/<a href="http://rubyonrails.org/" rel="nofollow">Rails</a>' ActiveRecord <a href="http://guides.rails.info/migrations.html" rel="nofollow">Migrations</a> on Oracle, SQL Server 2005, MySQL and SQLite. I think I may have managed to use it on Access too, but that may a faulty memory. It also supports PostgreSQL and db2 that I know of, either "out of the box" or by additional download. And you can always write your own adapter if you want something more exotic and have a desire for a really self-flagellatory DIY project...</p> <p>It works really well, but you have to accept that this is a concept that will limit your access to platform-specific features. Not just with AR, but with - in all probability - any cross-platform tool that doesn't cost bazillions: for example, what do you do if your target platform doesn't support triggers? Or stored procedures? (MySQL 4.0, for example, or SQLite). Any cross-platform system has to deal with issues like this (I acquired a lifetime hatred of Crystal Reports, for example, after wrestling with a version that tried - catastrophically - to apply an Oracle outer-join operator in a SQL Server query).</p> <p>If you stick to tables, indexes and the simpler constraints, I'd expect a wide variety of platforms to be available to you. There's an argument for suggesting that you perhaps should generally be looking for anything further to be handled outside your DB. I won't go further than that here - it's a somewhat religious debate...</p>