I am having a postgres production database in production (which contains a lot of Data). now I need to modify the model of the tg-app to add couple of new tables to the database.
How do i do this? I am using sqlAlchemy.
|
I am having a postgres production database in production (which contains a lot of Data). now I need to modify the model of the tg-app to add couple of new tables to the database. How do i do this? I am using sqlAlchemy.
| |||
|
feedback
|
|
This always works and requires little thinking -- only patience.
You can do this kind of procedure any time you do major surgery. It never touches the old database except to extract the data. | |||||
feedback
|
|
The simplest approach is to simply write some sql update scripts and use those to update the database. Obviously that's a fairly low-level (as it were) approach. If you think you will be doing this a lot and want to stick in Python you might want to look at sqlalchemy-migrate. There was an article about it in the recent Python Magazine. | ||||
|
feedback
|
|
I'd agree in general with John. One-pass SELECTing and INSERTing would not be practical for a large database, and setting up replication or multi-pass differential SELECT / INSERTs would probably be harder and more error-prone. Personally, I use SQLAlchemy as an ORM under TurboGears. To do schema migrations I run:
To see the difference between the live and development schemas, then manually write (and version control) DDL scripts to make the required changes. For those using SQLAlchemy standalone (i.e. not under TurboGears), the | |||
|
feedback
|
|
If you are just adding tables, and not modifying any of the tables which have the existing data in it, you can simply add the new sqlAlchemy table definitions to model.py, and run:
This will not overwrite any of your existing tables. For schema migration, you might take a look at http://code.google.com/p/sqlalchemy-migrate/ although I haven't used it yet myself. Always take a backup of the production database before migration activity. | |||
|
feedback
|