Is there a way to use Profiler to determine whether a table is being accessed by queries?
I saw an event named Object:Opened (Indicates when an object h
I'm not seeing those in SQL Server 2005.
In my experience, I look at SQL:StmtStarting AND SP:StmtStarting - you can filter TextData on %TABLE_NAME%. This will even catch things inside SPs when you use SP:StmtStarting.
It's not bulletproof, because it has to use the LIKE syntax, but it might get you what you are looking for.