user53885
user53885

Reputation: 3829

Is there a way in SQL profiler to filter by INSERT statements?

I am trying to identify SQL INSERTS that occur when a record is viewed from a Windows application. In SQL Profiler I have a long list of stored procedures that fire when the record is viewed, however it is very cumbersome to identify the stored procedure then locate the inserts, then find the stored procedure in the object explorer (even with filters).

Is there a way for me to see all SQL commands on a line item instead of a stored procedure? And then filter by INSERT statements?

Thanks for any assitance!

Upvotes: 17

Views: 25667

Answers (2)

Isaiah4110
Isaiah4110

Reputation: 10110

Just adding some screenshots to the above answer:

Trace Details

Event Selection

Filter Text Data

Upvotes: 13

user121301
user121301

Reputation:

Try watching the events SP:StmtStarting and SQL:StmtStarting, include column TextData, and set a Column Filter for TextData with the Like set to %insert%.

This may include some false positives like references to the "inserted" table in a trigger, etc.

Upvotes: 27

Related Questions