Posts
Sort by recent activity
Audit SQL schema changes from day-to-day
Here’s the scenario:
Management is required by auditing to keep track of any SQL database changes to verify we followed our established Project Life Cycle process (i.e. was the correct documentatio...
Suggestion to list PK for tables
Awesome changes included with SQL Search 2.0! Thank you!
I especially like seeing the table layout displayed in the lower window. Could you add an additional column that notates which columns a...
New Feature to indicate the updates were successful
Each SQL Compare script has this at the end...@TRANCOUNT>0 BEGIN
PRINT 'The database update succeeded'
COMMIT TRANSACTION
END
ELSE PRINT 'The database update failed'
GO
DROP TABLE #tmpErrors
GO
...