Reputation: 11721
I know that @@dbts
time stamp get incremented for each insert , update or delete
Now suppose Select @@dbts
gives me 2505.
How can I know which operation (insert/update/delete) is performed when @@dbts
is 2504 which caused it to become 2505
Upvotes: 1
Views: 308
Reputation: 2775
Unless you're monitoring every query call within the system and every one has an output value for the @@DBTS, there's no way to know this.
Upvotes: 2