Activity overview
Latest activity by Sandy F.
Ali,
My apologies for not responding sooner! I've been pulled into a "hot" development project so I haven't been back to this. Once that project wraps up, I will take a look at the links you sent and get back to you. Thanks! / comments
Ali,
My apologies for not responding sooner! I've been pulled into a "hot" development project so I haven't been back to this. Once that project wraps up, I will take a look at the links you sent...
This enhancement has been implemented many versions back. / comments
This enhancement has been implemented many versions back.
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...
I love Redgate products but it is amazing to me that this bug has still not been fixed. It was originally posted in 2011 and it is still a bug. / comments
I love Redgate products but it is amazing to me that this bug has still not been fixed. It was originally posted in 2011 and it is still a bug.
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...
I would like to see a checkbox under Options to Ignore "Db Extended Properties" similar to the checkbox to Ignore "Extended Properties" under Options. I like to set Extended Properties at the database level (i.e. this db is for regression testing, this db is for original development, this is the staging database). I don't want to Ignore all Extended Properties because I want to move the table and column level items. But I certainly don't want the db level Extended Properties moved from one db to the next. Please consider for future release. I'm using SQL Compare 8.1.0.360. / comments
I would like to see a checkbox under Options to Ignore "Db Extended Properties" similar to the checkbox to Ignore "Extended Properties" under Options. I like to set Extended Properties at the dat...
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
...