views:

127

answers:

1

I am trying to automate order processing for a client their POS vendor doesn't have any sort of API with their software so I was hoping to be able to insert orders directly in the database.

so what i want to do is take a snapshot of the database, enter an order manually and then take another snapshot and compare the 2 snapshots to see what has been done.

is there a tool around that can analyse the two SQL Server snapshots and output an sql file of the differences ?

please don't lecture me about this being a bad idea, i already know the risks of messing with someone elses data directly

A: 

I think SQLDelta should work for you.

JP Alioto