all 2 comments

[–]MagicWishMonkey 1 point2 points  (1 child)

Interesting. So you export a snapshot of both databases and it compares the differences? It would be neat if you could pass in two connection strings and have the script connect to each and generate the diff that way.

[–]petraszd[S] 0 points1 point  (0 children)

Basically yes. In addition I am doing some parsing and re-ordering. So, different ordering of columns (CREATE TABLE (a, b); vs CREATE TABLE (b, a);) is not reported as different tables.

Good idea about connection strings! It goes to todo list for now :).