What is the best way to keep the two database schemas in sync?
2 answers
If you are using replication, then when you change the schema on one side, you should republish these articles and resynchronize only the things that have changed.
If you are making changes through a script, just apply the change scripts to both databases. EDIT: In fact, if you KNOW that you are making changes to two databases, I highly recommend creating a change script that you can run on both.
If you are not sure if the schemas are in sync, we use Red SQL Gates SQL Compare . It's a fantastic tool (and no, I don't work for them)
+5
a source to share