Reputation: 480
in my work i have
phpmyadmin
SQL database to work on (locally and on server)
the annoying problem is when i modify the local DB structure (columns,relations,new tables) i'm forced to redo the modifying again on the server DB because when i backup my local DB and import it in the server i get the error (table exists) and the importing operation gets canceled
so how can i import the modified structures in the server without redo them? thanks a lot
Upvotes: 2
Views: 131
Reputation: 36
Save the DDL on another TXT file and when you are finished with the modification process upload the TXT file to the server and execute the DDL.
Upvotes: 2