Hi all!
I need to check data changes in some tables from specified date. Can it be done without triggers for each table
SQL Server Management Studio always says "Data was changed" if another user updates data and you try to update old version. How it checks data modification date I found only this:
USE
[ScheduleDB]GO
SELECT
* FROM sys.objects WHERE object_id = OBJECT_ID('[dbo].[TTest]') AND type in ('U') but it can only show structure modification date.