i need load data old db migrated schema of db using doctrine migration system.
i guess doctrine might me in process. tried , lost few hours using etl scripts programs, without success.
from point of view need :
- create db v0 schema
- load data old db (schema identical)
- migrate db latest version using doctrine migration
- extract data
- load in new db
what think of process? think feasable using doctrine?
i tried few searches on google without success.
i reviewed features of doctrine_core
class.
thanks help
yes, possible migrate data 1 database using doctrine.
it sounds you're trying one-time database revision , migration , applications not written using doctrine. in scenario, database abstraction has little or no benefit, unless you're rewriting applications use it.
if have no prior experience using doctrine doubt writing custom migration classes in easier doing whatever database api experienced using. makes sense use migration classes (some times) if using doctrine development. otherwise it's layer , api don't need.
i'm using doctrine 1.2, has nice features migrations number of bugs , omissions of expected functionality. reportedly version 2 improves on haven't used yet.
Comments
Post a Comment