Subject | Re: [firebird-support] Firebird database comparison tool. |
---|---|
Author | Milan Babuskov |
Post date | 2011-10-18T10:21:30Z |
Thomas Clarke wrote:
Database changes are often not just about metadata, but also data
transformations and there is no way to do that in ad-hoc manner.
Consider for example changing from timestamp column to store the same
data into varchar(50) column with added timezone string. This requires
something like:
UPDATE mytable SET newcolumn = oldcolumn || ' default timezone';
Only way to apply such change to production database is to log it as
such. No database structure comparison tool would be able to handle this.
like IBExpert and FlameRobin have options to do this automatically for you.
See this paper for example implementation (demo source code included):
http://heanet.dl.sourceforge.net/sourceforge/fbexport/managing_metadata_fixed.zip
--
Milan Babuskov
==================================
The easiest way to import XML, CSV
and textual files into Firebird:
http://www.guacosoft.com/xmlwizard
==================================
> It is broken down into two major parts, i)You could also version your database and make the upgrade simple.
> update the exe file based on version numbers and ii) update the Firebird
> database structure.
Database changes are often not just about metadata, but also data
transformations and there is no way to do that in ad-hoc manner.
Consider for example changing from timestamp column to store the same
data into varchar(50) column with added timezone string. This requires
something like:
UPDATE mytable SET newcolumn = oldcolumn || ' default timezone';
Only way to apply such change to production database is to log it as
such. No database structure comparison tool would be able to handle this.
> Any ideas as to the best way to go about this?Log all your database changes and apply them in production. Some tools
like IBExpert and FlameRobin have options to do this automatically for you.
See this paper for example implementation (demo source code included):
http://heanet.dl.sourceforge.net/sourceforge/fbexport/managing_metadata_fixed.zip
--
Milan Babuskov
==================================
The easiest way to import XML, CSV
and textual files into Firebird:
http://www.guacosoft.com/xmlwizard
==================================