What do you suggest as good ways to import database structure and commit database structure changes to the repository? Our current procedure is to export the structure into a text file then replace it the the existing text file in the repository. I find it tedious and time-consuming. Are there any utilities to do this?
+1
A:
I've taken to just doing all my structural updates as SQL scripts, so I don't have to export anything. That works out pretty good.
joelt
2010-08-26 01:58:16
What I don't like about this approach is that the scripts should be kept in order or it may ruin the structure of the database.
rajeem_cariazo
2010-08-26 02:15:16