The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

Extended Events - building a histogram of servers that connect with a particular Application Name?

I'm trying to build an XE in order to find out which of our internal apps (that don't have app names and thus show up as .Net SQLClient Data Provider) are hitting particular servers. Ideally, I'd ...
1
vote
1answer
32 views

Where are the session definitions of extended events stored?

Is it msdb, resource, master or local? If I back up my local database against which I run the XEs, would I have backed up my sessions as well? Are there any metadata stored in the system tables too? ...
1
vote
1answer
102 views

SQL Server Extended Events doesn't have the newer events

I am querying system_health session and noticed that not all of the events are being returned. There were definitely few deadlocks today but these aren't in the output. I came across this connect ...
2
votes
1answer
151 views

SQL Server 2012 Extended Events wait_info vs 2008 R2

Just starting to play with EE in 2012 and was working through a demo that didn't quite work out on 2012 but worked fine on 2008 R2. The demo was on tracing wait stats and it failed due to differences ...
0
votes
3answers
299 views

Audio ended event doesn't work

Have some trouble with catch this event. Have: <div id="click_me"></div> <audio class="fo_audio"> <source src="track1.mp3" type="audio/mpeg; codecs='mp3'"> ...
8
votes
1answer
321 views

How to get owner and locked object from locks_lock_timeouts_greater_than_0 event in SQL Server?

I am capturing locks_lock_timeouts_greater_than_0 events using Extended Events in SQL Server. The event session is following: CREATE EVENT SESSION MyQuery ON SERVER ADD EVENT ...
1
vote
1answer
243 views

How to pass SQL Server Extended Events Activity Id from C#?

I have been looking into using Extended Events in a full end-to-end tracing scenario. I am especially interested in the XEvent's activity id that helps follow event execution sequence for a given ...
1
vote
1answer
300 views

Filter extended events by affected table?

I am working with extended events in SQL Server 2008 to perform some monitoring. I am mostly interested in the following events: sqlserver.sp_statement_completed sqlserver.sp_statement_starting ...
2
votes
1answer
285 views

SQL Monitoring and Interjection

From another thread that gave me the information on how to add monitoring to an SQL Server... http://stackoverflow.com/questions/3586736/see-sql-from-entityframework-with-collection-like-queries ...
3
votes
5answers
2k views

SQL Server 2008 - Capturing all SQL Statements Hitting the Server

Can anyone suggest options we might have in capturing all SQL statements being sent to our SQL Server, outside of running Profiler? I'm aware of a couple ways of doing it, but want to make sure I'm ...
4
votes
4answers
3k views

Create Trigger to log SQL that affected table?

I'm trying to find out what is updating the value of a column and i have very little knowledge of the application. At a quick glance I've noticed about 90% of the applications business logic is ...
0
votes
1answer
125 views

Extended events vs Triggers Sql server 2008

I have a requirement to copy whatever data is getting inserted or updated to a log table to show who updated and when. I was thinking of using triggers for the same. The reason being the insert needed ...