mysql - How can I duplicate a database from c#? -
i have 'base' database filled generic info within various tables. database created each user have own versions , can modify same info suit needs.
i update base database changes new users updates when register.
my app mvc3 site on entity framework 4.1 using mysql back-end.
currently process above using following steps:
- run mysqldump on database .sql file
- update generated file change db name users name
- run mysql import using new script
however have migrated on azure , process seems slow compared old physical server (similar higher specs).
is there better way can doing might remove io processes , potentially increase overall speed?
changed approach, have 'please wait' animation showing while server heavy lifting.
Comments
Post a Comment