Kuntady Nithesh
Kuntady Nithesh

Reputation: 11721

SQL Server, how to find the operation performed at particular @@dbts

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

Answers (1)

Grant Fritchey
Grant Fritchey

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

Related Questions