<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Java Database Migrations</title>
	<atom:link href="http://blog.carbonfive.com/2008/09/java/java-database-migrations/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations</link>
	<description></description>
	<lastBuildDate>Thu, 11 Mar 2010 14:29:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matthew McEachen</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2276</link>
		<dc:creator>Matthew McEachen</dc:creator>
		<pubDate>Mon, 22 Feb 2010 07:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2276</guid>
		<description>As I was writing the subclass of ResourceMigrationResolver that was doing the sub-directory, I realized that the whole resolve() method only had one hook that I could add the dbtype to the end of the resource -- if convertMigrationsLocation() was made protected and was also provided the dbType, like:

    protected String convertMigrationsLocation(DatabaseType dbType, String migrationsLocation)

otherwise I&#039;d have to clone essentially the whole ResourceMigrationResolver class.

I found a more explicit way of implementing this, at least in spring, but I don&#039;t think it&#039;s as nice (but it&#039;s what I&#039;m doing for now); I&#039;m going to provide the subdirectory as a configuration parameter:

    
      
        
      
    

and dbtype is specified in the same file that has the db connectivity information. 

Thanks for pushing the release, and I apologize for the death-by-a-thousand-patch-cuts.</description>
		<content:encoded><![CDATA[<p>As I was writing the subclass of ResourceMigrationResolver that was doing the sub-directory, I realized that the whole resolve() method only had one hook that I could add the dbtype to the end of the resource &#8212; if convertMigrationsLocation() was made protected and was also provided the dbType, like:</p>
<p>    protected String convertMigrationsLocation(DatabaseType dbType, String migrationsLocation)</p>
<p>otherwise I&#8217;d have to clone essentially the whole ResourceMigrationResolver class.</p>
<p>I found a more explicit way of implementing this, at least in spring, but I don&#8217;t think it&#8217;s as nice (but it&#8217;s what I&#8217;m doing for now); I&#8217;m going to provide the subdirectory as a configuration parameter:</p>
<p>and dbtype is specified in the same file that has the db connectivity information. </p>
<p>Thanks for pushing the release, and I apologize for the death-by-a-thousand-patch-cuts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2275</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2275</guid>
		<description>@Matthew 0.9.9-m3 has been deployed with your change.  Let me know how it works out for you.</description>
		<content:encoded><![CDATA[<p>@Matthew 0.9.9-m3 has been deployed with your change.  Let me know how it works out for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew McEachen</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2271</link>
		<dc:creator>Matthew McEachen</dc:creator>
		<pubDate>Fri, 19 Feb 2010 19:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2271</guid>
		<description>Sweet -- you already did the patch! *Exactly* what I had in mind. Thanks!

When will you cut the next release?</description>
		<content:encoded><![CDATA[<p>Sweet &#8212; you already did the patch! *Exactly* what I had in mind. Thanks!</p>
<p>When will you cut the next release?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2264</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Wed, 17 Feb 2010 18:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2264</guid>
		<description>@Matthew

Thanks!  We usually handle different db types using Maven profiles.  Each profile points to a different migration directory (src/main/db/mysql, src/main/db/postgres, etc).  It&#039;s not that common a use case for most of our projects.

I&#039;m happy to make the change to the MigrationResolver interface and take a look at your patch to see how I can work it to the project.  Why don&#039;t you create a ticket (http://code.google.com/p/c5-db-migration/issues/list) and include your patch?

Take care,
Christian</description>
		<content:encoded><![CDATA[<p>@Matthew</p>
<p>Thanks!  We usually handle different db types using Maven profiles.  Each profile points to a different migration directory (src/main/db/mysql, src/main/db/postgres, etc).  It&#8217;s not that common a use case for most of our projects.</p>
<p>I&#8217;m happy to make the change to the MigrationResolver interface and take a look at your patch to see how I can work it to the project.  Why don&#8217;t you create a ticket (<a href="http://code.google.com/p/c5-db-migration/issues/list" rel="nofollow">http://code.google.com/p/c5-db-migration/issues/list</a>) and include your patch?</p>
<p>Take care,<br />
Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew McEachen</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2263</link>
		<dc:creator>Matthew McEachen</dc:creator>
		<pubDate>Wed, 17 Feb 2010 18:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2263</guid>
		<description>I&#039;ve spent some time looking at this code, and kudos to the layout of the classes!

I&#039;ve been using another dbmigrate implementation that supports different migration steps for different database types (so one directory holding MySQL DDL and another with h2 DDL). That&#039;s proven handy so we can unit test with h2 and run with MySQL.

It would be a fairly small patch to MigrationResolver to make them &quot;DatabaseType&quot;-aware:  Set resolve(DatabaseType dbtype);

And then the migrationsLocation could have the dbtype added as a sub-directory suffix, so you&#039;d construct a new subclass of ResourceMigrationResolver with &quot;classpath:/com/abc/project&quot; and then depending on your datasource&#039;s DatabaseType, either &quot;/mysql&quot; or &quot;/h2&quot; would be appended to the database type.

By being a new subclass, the old behavior would be unaffected. 

How do you guys use different database types (one for testing, one for production)?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve spent some time looking at this code, and kudos to the layout of the classes!</p>
<p>I&#8217;ve been using another dbmigrate implementation that supports different migration steps for different database types (so one directory holding MySQL DDL and another with h2 DDL). That&#8217;s proven handy so we can unit test with h2 and run with MySQL.</p>
<p>It would be a fairly small patch to MigrationResolver to make them &#8220;DatabaseType&#8221;-aware:  Set resolve(DatabaseType dbtype);</p>
<p>And then the migrationsLocation could have the dbtype added as a sub-directory suffix, so you&#8217;d construct a new subclass of ResourceMigrationResolver with &#8220;classpath:/com/abc/project&#8221; and then depending on your datasource&#8217;s DatabaseType, either &#8220;/mysql&#8221; or &#8220;/h2&#8243; would be appended to the database type.</p>
<p>By being a new subclass, the old behavior would be unaffected. </p>
<p>How do you guys use different database types (one for testing, one for production)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple Database Migration in Java &#171; Find Time for the Karussell</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-2149</link>
		<dc:creator>Simple Database Migration in Java &#171; Find Time for the Karussell</dc:creator>
		<pubDate>Wed, 23 Dec 2009 16:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-2149</guid>
		<description>[...] c5 db migration (doc) [...]</description>
		<content:encoded><![CDATA[<p>[...] c5 db migration (doc) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Farnsworth</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-916</link>
		<dc:creator>Mark Farnsworth</dc:creator>
		<pubDate>Sat, 04 Jul 2009 15:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-916</guid>
		<description>Hello,

I have a developed similar tool.
http://code.google.com/p/garindriver

My tool supports a model with an internal schema manager scripts, JDBC driver wrapper automatically recording of DDL/DML, distributed locking model, and a few other features.

GarinDriver currently supports it&#039;s internal schema manager and also provides a link into liquibase schema manager.   With the model I use it should be possible to also link into your migration project if it looks like a good fit.  The basic concept of GarinDriver is to automatically delegate to the migration system at JDBC driver connect time using a model where the client can identify the backend JDBC database and required level.  GarinDriver will AUTOMATICALLY invoke migrations prior to returning the connection.

In any case, please checkout the project and let me know what you think.  It is possible that we could work together a bit to allow your project link into the event chain if you feel that it makes sense.

-Mark</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I have a developed similar tool.<br />
<a href="http://code.google.com/p/garindriver" rel="nofollow">http://code.google.com/p/garindriver</a></p>
<p>My tool supports a model with an internal schema manager scripts, JDBC driver wrapper automatically recording of DDL/DML, distributed locking model, and a few other features.</p>
<p>GarinDriver currently supports it&#8217;s internal schema manager and also provides a link into liquibase schema manager.   With the model I use it should be possible to also link into your migration project if it looks like a good fit.  The basic concept of GarinDriver is to automatically delegate to the migration system at JDBC driver connect time using a model where the client can identify the backend JDBC database and required level.  GarinDriver will AUTOMATICALLY invoke migrations prior to returning the connection.</p>
<p>In any case, please checkout the project and let me know what you think.  It is possible that we could work together a bit to allow your project link into the event chain if you feel that it makes sense.</p>
<p>-Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-420</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Fri, 27 Mar 2009 16:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-420</guid>
		<description>@Maxim: leaving rollback out was a deliberate decision.  Not every migration has an easy-to-write corresponding rollback (e.g. destructive changes).  And in my personal experience, I&#039;ve never really needed to rollback a migration in development.  We develop our migration against a unit test database that&#039;s easy to reset.  Once a migration is satisfactory, it&#039;s run against a local development database, then checked into VCS for the rest of the team.  If we need to undo something in a previous migration, we simply do it in a new migration.  We&#039;ve had scenarios where migration N adds a column and the migration N + 2 (or something) removes it.  That works fine.

Have you found a strong case for rolling back in your experience?</description>
		<content:encoded><![CDATA[<p>@Maxim: leaving rollback out was a deliberate decision.  Not every migration has an easy-to-write corresponding rollback (e.g. destructive changes).  And in my personal experience, I&#8217;ve never really needed to rollback a migration in development.  We develop our migration against a unit test database that&#8217;s easy to reset.  Once a migration is satisfactory, it&#8217;s run against a local development database, then checked into VCS for the rest of the team.  If we need to undo something in a previous migration, we simply do it in a new migration.  We&#8217;ve had scenarios where migration N adds a column and the migration N + 2 (or something) removes it.  That works fine.</p>
<p>Have you found a strong case for rolling back in your experience?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxim Porges</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-419</link>
		<dc:creator>Maxim Porges</dc:creator>
		<pubDate>Fri, 27 Mar 2009 15:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-419</guid>
		<description>Hi,

This is a great looking plugin - we&#039;ve just hooked it in to our CI process and are expecting good things.

The plugin looks fully featured with the exception of rolling back to prior versions a la the way it&#039;s done in Rails. Was this a deliberate step to enforce process, or just a feature that has not been implemented yet?

Thanks,

- max</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is a great looking plugin &#8211; we&#8217;ve just hooked it in to our CI process and are expecting good things.</p>
<p>The plugin looks fully featured with the exception of rolling back to prior versions a la the way it&#8217;s done in Rails. Was this a deliberate step to enforce process, or just a feature that has not been implemented yet?</p>
<p>Thanks,</p>
<p>- max</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-159</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Wed, 05 Nov 2008 06:42:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-159</guid>
		<description>Christian, 

Works like a charm. I actually ended up extended ResourceMigrationResolver and used the hibernate dialect, which i already had to set the migrationsLocations</description>
		<content:encoded><![CDATA[<p>Christian, </p>
<p>Works like a charm. I actually ended up extended ResourceMigrationResolver and used the hibernate dialect, which i already had to set the migrationsLocations</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-155</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Mon, 03 Nov 2008 00:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-155</guid>
		<description>Cool. I&#039;ll give a burl</description>
		<content:encoded><![CDATA[<p>Cool. I&#8217;ll give a burl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-152</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Tue, 28 Oct 2008 16:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-152</guid>
		<description>Jim: I&#039;ve been meaning to add the recommended approach to the wiki, but haven&#039;t yet had time.  Here&#039;s a quick description...

Using maven profiles, you can create a profile for each database supported.  In each profile, you can set a property called &quot;dbtype&quot;.  Then, in you db-migration configuration, you can override the migrations path like this: file:src/main/resources/db/${dbtype}/migrations/*

I&#039;ll add a more complete example to the documentation one of these days.  Good luck!</description>
		<content:encoded><![CDATA[<p>Jim: I&#8217;ve been meaning to add the recommended approach to the wiki, but haven&#8217;t yet had time.  Here&#8217;s a quick description&#8230;</p>
<p>Using maven profiles, you can create a profile for each database supported.  In each profile, you can set a property called &#8220;dbtype&#8221;.  Then, in you db-migration configuration, you can override the migrations path like this: file:src/main/resources/db/${dbtype}/migrations/*</p>
<p>I&#8217;ll add a more complete example to the documentation one of these days.  Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-151</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Fri, 24 Oct 2008 22:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-151</guid>
		<description>Christian,

Just picked up 0.9.3 and i can get it to run against the hsql databse. Much appreciate for the quick turn around. Now i have a question around managing the migration across a number of different databases. For instance the sql that hibenrate spits out for hsql is different to that for mysql. 

Is there a mechanism to handle this at the moment?

cheers
</description>
		<content:encoded><![CDATA[<p>Christian,</p>
<p>Just picked up 0.9.3 and i can get it to run against the hsql databse. Much appreciate for the quick turn around. Now i have a question around managing the migration across a number of different databases. For instance the sql that hibenrate spits out for hsql is different to that for mysql. </p>
<p>Is there a mechanism to handle this at the moment?</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-144</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Mon, 20 Oct 2008 04:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-144</guid>
		<description>Christian,

Very timely indeed. Thank you very much.</description>
		<content:encoded><![CDATA[<p>Christian,</p>
<p>Very timely indeed. Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-143</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Sun, 19 Oct 2008 16:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-143</guid>
		<description>Jim: this time, I do. :)  I&#039;m wrapping up a few things today and hope to release another 0.9.3-SNAPSHOT this afternoon.  If no issues surface with the SNAPSHOT, I&#039;ll release 0.9.3 Monday or Tuesday.  Keep an eye on the release notes (http://code.google.com/p/c5-db-migration/wiki/ReleaseNotes) to see what&#039;s changed and when.</description>
		<content:encoded><![CDATA[<p>Jim: this time, I do. <img src='http://blog.carbonfive.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I&#8217;m wrapping up a few things today and hope to release another 0.9.3-SNAPSHOT this afternoon.  If no issues surface with the SNAPSHOT, I&#8217;ll release 0.9.3 Monday or Tuesday.  Keep an eye on the release notes (<a href="http://code.google.com/p/c5-db-migration/wiki/ReleaseNotes" rel="nofollow">http://code.google.com/p/c5-db-migration/wiki/ReleaseNotes</a>) to see what&#8217;s changed and when.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-142</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Sat, 18 Oct 2008 20:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-142</guid>
		<description>Chrstian.,

Do you have an rough idea when you will be doen with the refactor</description>
		<content:encoded><![CDATA[<p>Chrstian.,</p>
<p>Do you have an rough idea when you will be doen with the refactor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-130</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Wed, 15 Oct 2008 22:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-130</guid>
		<description>Thanks Christian

HSQL just doesn&#039;t support the &#039;unique&#039; constraint in the create table construct. I am using MM directly in my code.

I will also look at H2Database


cheers</description>
		<content:encoded><![CDATA[<p>Thanks Christian</p>
<p>HSQL just doesn&#8217;t support the &#8216;unique&#8217; constraint in the create table construct. I am using MM directly in my code.</p>
<p>I will also look at H2Database</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-129</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-129</guid>
		<description>Jim, it depends.  If you&#039;re using the migration manager directly in your code, then you can plug-in in a new VersionStrategy, with a custom implementation of enabledVersioning().  If you&#039;re using the maven plugin, then there isn&#039;t really an easy hook to do what you need to do.

What is the correct DDL SQL for creating the version table for HSQL?

Another alternative is to switch to H2Database.  It&#039;s written by the same team as Hypersonic and is actively developed, unlike HSQL.

I&#039;m midway through a refactor which will allow for better handling of dbms-specific features.  When it&#039;s done, it will be easier to handle these cases more gracefully than the framework allows for now.</description>
		<content:encoded><![CDATA[<p>Jim, it depends.  If you&#8217;re using the migration manager directly in your code, then you can plug-in in a new VersionStrategy, with a custom implementation of enabledVersioning().  If you&#8217;re using the maven plugin, then there isn&#8217;t really an easy hook to do what you need to do.</p>
<p>What is the correct DDL SQL for creating the version table for HSQL?</p>
<p>Another alternative is to switch to H2Database.  It&#8217;s written by the same team as Hypersonic and is actively developed, unlike HSQL.</p>
<p>I&#8217;m midway through a refactor which will allow for better handling of dbms-specific features.  When it&#8217;s done, it will be easier to handle these cases more gracefully than the framework allows for now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Alateras</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-128</link>
		<dc:creator>Jim Alateras</dc:creator>
		<pubDate>Wed, 15 Oct 2008 09:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-128</guid>
		<description>I just tested against  hsql 1.8 but i am having a problem created the schema version table

Caused by: java.sql.SQLException: Unexpected token: UNIQUE in statement [create table schema_version (version varchar(32) not null u
nique]


I believe that HSQL v1.9 will rectify this problem but there is no release date as yet. Am i able to use my own definition for the schema version table

cheers
</description>
		<content:encoded><![CDATA[<p>I just tested against  hsql 1.8 but i am having a problem created the schema version table</p>
<p>Caused by: java.sql.SQLException: Unexpected token: UNIQUE in statement [create table schema_version (version varchar(32) not null u<br />
nique]</p>
<p>I believe that HSQL v1.9 will rectify this problem but there is no release date as yet. Am i able to use my own definition for the schema version table</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Introducing Java DB Migrations at Carbon Five Community</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-109</link>
		<dc:creator>Introducing Java DB Migrations at Carbon Five Community</dc:creator>
		<pubDate>Mon, 29 Sep 2008 15:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-109</guid>
		<description>[...] A new version of the Java DB Migrations framework has been release, check this post for details and the project documentation.  &#171; Versioning your IDEA module meta-data (.iml) [...]</description>
		<content:encoded><![CDATA[<p>[...] A new version of the Java DB Migrations framework has been release, check this post for details and the project documentation.  &laquo; Versioning your IDEA module meta-data (.iml) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-61</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Thu, 04 Sep 2008 21:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-61</guid>
		<description>Lance,

I did some testing against MS SQL Server and found one issue which has been resolved in 0.9.2-SNAPSHOT.  So, I&#039;ve successfully run all of the functionality against SQL Server 2000.  If you&#039;re up for it, switch to that SNAPSHOT and give it a try.  Let me know how it goes. -Christian</description>
		<content:encoded><![CDATA[<p>Lance,</p>
<p>I did some testing against MS SQL Server and found one issue which has been resolved in 0.9.2-SNAPSHOT.  So, I&#8217;ve successfully run all of the functionality against SQL Server 2000.  If you&#8217;re up for it, switch to that SNAPSHOT and give it a try.  Let me know how it goes. -Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance</title>
		<link>http://blog.carbonfive.com/2008/09/java/java-database-migrations/comment-page-1#comment-60</link>
		<dc:creator>Lance</dc:creator>
		<pubDate>Thu, 04 Sep 2008 16:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=129#comment-60</guid>
		<description>Nice work! Thanks for setting this up as a google code project. As an MS SQL Server user this will really help as I can now submit issues and fixes when and if I run into issues with MS SQL. Thanks!</description>
		<content:encoded><![CDATA[<p>Nice work! Thanks for setting this up as a google code project. As an MS SQL Server user this will really help as I can now submit issues and fixes when and if I run into issues with MS SQL. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
