50 Gb msdb ate disk

  • Hello,

    Our SQL guru is out of town. He was at our office last week helping with the same problem but today we found out it is still there and the server is sluggish, here is a report:

    queue_messages_1165247206 queue_clustered_index 4658026 4641158 4581182 36390 36259 35790

    queue_messages_1165247206 queue_secondary_index 98898 98891 97488 772 772 761

    How can we purge the queue to free up some space?

    Regards,

    Juan

  • We run:

    sp_updatestats

    ;

    and then:

    dbcc shrinkfile (1,100)

    ;

    dbcc shrinkfile (2,100)

    ;

    and it dropped to 37 GB

    Still we do not know why is so big... any advice will be welcome.

    Thanks.

  • the queue didn´t change much:

    queue_messages_1165247206 queue_clustered_index 4666210 4650040 4589950 36454 36328 35858

    queue_messages_1165247206 queue_secondary_index 99090 99083 97677 774 774 763

    How can it be reduce?

    Regards,

    Juan

  • I think this will help reduce the queue, but I am not sure if we can run it on the production server...

    http://gallery.technet.microsoft.com/scriptcenter/1d62b11b-82a2-46d0-b351-77eccbca1582

    can anyone tell us if we should do it?

    Thanks

    Juan.

  • We run the process overnight but it just reduce 500 MB and did not finish...but the MSDB grew to 50 GB again!

    Please any comments are welcome!!

    Juan

  • Do you know what table(s) causing the msdb growth?

    You could run the following code against the msdb:

    create table #tableSize

    (name varchar(100), rows int, reserved varchar(50), data varchar(50), index_size varchar(50), unused varchar(50))

    insert

    into #tableSize

    EXEC sp_MSforeachtable 'sp_spaceused ''?'''

    Select *From #tableSize

    My shot in the dark:

    I'd guess you're running a mail distribution with large attachements and the top table is sysmail_mailitems...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • Thanks for your answer... while the process is running I want to let you know that we are freeing about 10 GB when we run:

    DBCC UPDATEUSAGE(0)

    And

    dbcc shrinkfile (1,100)

    ;

    dbcc shrinkfile (2,100)

    ;

    but there is still 35 GB on the queue...

    Juan

  • The query showed nothing...

    may be this one:

    sysjobhistory 360 2776 KB 888 KB 128 KB 1760 KB

    backupset 26 592 KB 56 KB 232 KB 304 KB

    backupfile 54 400 KB 56 KB 96 KB 248 KB

    backupmediaset 26 264 KB 24 KB 112 KB 128 KB

    backupmediafamily 26 208 KB 16 KB 96 KB 96 KB

    backupfilegroup 26 136 KB 40 KB 40 KB 56 KB

    sysjobactivity 414 136 KB 88 KB 16 KB 32 KB

    sysjobs 10 64 KB 8 KB 56 KB 0 KB

    sysjobsteps 10 48 KB 8 KB 40 KB 0 KB

    sysdtspackagefolders90 2 48 KB 8 KB 40 KB 0 KB

    MSdbms_datatype_mapping 325 40 KB 24 KB 16 KB 0 KB

    MSdbms_map 248 40 KB 24 KB 16 KB 0 KB

    sysjobservers 10 32 KB 8 KB 24 KB 0 KB

    syssubsystems 11 32 KB 8 KB 24 KB 0 KB

    sysdtscategories 3 32 KB 8 KB 24 KB 0 KB

    syssessions 102 32 KB 8 KB 24 KB 0 KB

    sysdtspackages90 3 32 KB 8 KB 24 KB 0 KB

    restorehistory 0 32 KB 8 KB 24 KB 0 KB

    syscachedcredentials 2 16 KB 8 KB 8 KB 0 KB

    sysdbmaintplans 1 16 KB 8 KB 8 KB 0 KB

    sysmail_configuration 7 16 KB 8 KB 8 KB 0 KB

    sysmaintplan_subplans 3 16 KB 8 KB 8 KB 0 KB

    sysschedules 10 16 KB 8 KB 8 KB 0 KB

    MSdbms 7 16 KB 8 KB 8 KB 0 KB

    MSdbms_datatype 141 16 KB 8 KB 8 KB 0 KB

  • Do you run Service Broker on that system?

    If so, what does the following query return on msdb?

    SELECT count(*) FROM sys.conversation_endpoints with (nolock)



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • query result 5756

    And about the service broker, I have no idea. I will read about that and try to give you and answer.

    I do want to let you know that this problem appear suddenly, and the only change we made recently was to change the main database (ERP) to complete recovery so we can make every half our log back ups. It was simple before.

    The log back up process was stopped and the fast growing of the msbd stopped. Also please consider the queue log is 36 GB.

    Thank for your time.

    Juan

  • shrinking a database is a devastatingly bad thing to do. Massive internal fragmentation AND external fragmentation results.

    Find out what is consuming the space and address it. there are scripts you can find online to determine the size of tables in a database if the sp_spaceused one didn't work for some reason. I would look for service broker activity as well as user tables with a schema other than dbo that had been put in msdb for some reason. Email activity is another potential cause. You can also set up a profiler trace to capture msdb-specific activity as well.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • Hello,

    One thing that I been trying to state is that the queue log is 36 GB and we have no idea how it became like that (we are guessing the continues log backup), and we don´t know how to reduce it...

    here is of the query in which we based our conclusion:

    THE SCRIPT...

    USE [msdb]

    SELECT object_name(i.object_id) as objectName,

    i.[name] as indexName,

    sum(a.total_pages) as totalPages,

    sum(a.used_pages) as usedPages,

    sum(a.data_pages) as dataPages,

    (sum(a.total_pages) * 8) / 1024 as totalSpaceMB,

    (sum(a.used_pages) * 8) / 1024 as usedSpaceMB,

    (sum(a.data_pages) * 8) / 1024 as dataSpaceMB

    FROM sys.indexes i

    INNER JOIN sys.partitions p

    ON i.object_id = p.object_id

    AND i.index_id = p.index_id

    INNER JOIN sys.allocation_units a

    ON p.partition_id = a.container_id

    GROUP BY i.object_id, i.index_id, i.[name]

    ORDER BY sum(a.total_pages) DESC, object_name(i.object_id)

    GO

    THEN THE RESULT

    queue_messages_1165247206 queue_clustered_index 4680546 4665316 4605029 36566 36447 35976

    queue_messages_1165247206 queue_secondary_index 99418 99411 98000 776 776 765

    sysdercv cl 426 421 416 3 3 3

    sysjobhistory clust 340 120 110 2 0 0

    sysobjvalues clst 280 258 234 2 2 1

    syscolpars clst 73 73 71 0 0 0

    sysdesend cl 58 49 46 0 0 0

    backupfile PK__backupfile__7B264821 50 19 7 0 0 0

    sysconvgroup clst 50 34 31 0 0 0

    backupset backupsetuuid 39 19 15 0 0 0

    backupset PK__backupset__756D6ECB 35 17 7 0 0 0

    syscolpars nc 33 29 27 0 0 0

    sysmultiobjrefs clst 25 19 17 0 0 0

    sysobjkeycrypts cl 25 25 23 0 0 0

    sysxmitqueue clst 23 9 1 0 0 0

    [/i][/b]sysdtspackages90 NULL 20 16 1 0 0 0

    backupmediaset PK__backupmediaset__6FB49575 19 5 3 0 0 0

    backupfilegroup PK__backupfilegroup__7849DB76 17 10 5 0 0 0

    syshobtcolumns clust 17 14 12 0 0 0

    sysjobactivity clust 17 13 11 0 0 0

    sysmultiobjrefs nc1 17 12 10 0 0 0

    sysrowsetcolumns clust 17 14 12 0 0 0

    sysschobjs clst 17 15 13 0 0 0

    backupmediafamily backupmediafamilyuuid 15 10 8 0 0 0

    backupmediaset backupmediasetuuid 14 12 10 0 0 0

    backupmediafamily PK__backupmediafamil__719CDDE7 11 4 2 0 0 0

    sysidxstats clst 9 9 7 0 0 0

    sysiscols clst 8 8 6 0 0 0

    sysschobjs nc2 8 8 6 0 0 0

    sysschobjs nc1 7 7 5 0 0 0

    sysidxstats nc 6 6 4 0 0 0

    sysjobhistory nc1 6 6 4 0 0 0

    MSdbms_datatype_mapping pk_MSdbms_datatype_mapping 5 5 3 0 0 0

    MSdbms_map pk_MSdbms_map 5 5 3 0 0 0

    sysallocunits clust 5 5 3 0 0 0

    syshobts clust 5 5 3 0 0 0

    sysprivs clust 5 5 3 0 0 0

    sysrowsets clust 5 5 3 0 0 0

    syssingleobjrefs clst 4 4 2 0 0 0

    MSdbms pk_MSdbms 2 2 1 0 0 0

    MSdbms_datatype pk_MSdbms_datatype 2 2 1 0 0 0

    restorehistory PK__restorehistory__7E02B4CC 2 2 1 0 0 0

    restorehistory restorehistorybackupset 2 2 1 0 0 0

    sysbinobjs nc1 2 2 1 0 0 0

    sysbinobjs clst 2 2 1 0 0 0

    syscachedcredentials PK__syscachedcredent__3C69FB99 2 2 1 0 0 0

    syscategories clust 2 2 1 0 0 0

    syscerts nc1 2 2 1 0 0 0

    syscerts cl 2 2 1 0 0 0

    syscerts nc2 2 2 1 0 0 0

    syscerts nc3 2 2 1 0 0 0

    sysclsobjs clst 2 2 1 0 0 0

    sysclsobjs nc 2 2 1 0 0 0

    sysdbfiles clst 2 2 1 0 0 0

    sysdbmaintplans PK__sysdbmaintplans__3F9B6DFF 2 2 1 0 0 0

    sysdtscategories pk_dtscategories 2 2 1 0 0 0

    sysdtscategories uq_dtscategories_name_parent 2 2 1 0 0 0

    sysdtspackagefolders90 U_sysdtspackagefolders90uniquepath 2 2 1 0 0 0

    sysdtspackagefolders90 PK_sysdtspackagefolders90 2 2 1 0 0 0

    sysdtspackagefolders90 NULL 2 2 1 0 0 0

    sysdtspackages90 pk_sysdtspackages90 2 2 1 0 0 0

    sysfiles1 NULL 2 2 1 0 0 0

    sysjobs clust 2 2 1 0 0 0

    sysjobs nc1 2 2 1 0 0 0

    sysjobs nc4 2 2 1 0 0 0

    sysjobs nc3 2 2 1 0 0 0

    sysjobschedules clust 2 2 1 0 0 0

    sysjobservers clust 2 2 1 0 0 0

    sysjobservers nc1 2 2 1 0 0 0

    sysjobsteps nc1 2 2 1 0 0 0

    sysjobsteps nc2 2 2 1 0 0 0

    sysjobsteps clust 2 2 1 0 0 0

    sysmail_configuration SYSMAIL_CONFIGURATION_ParamnameMustBeUnique 2 2 1 0 0 0

    sysmail_servertype SYSMAIL_SERVERTYPE_TypeMustBeUnique 2 2 1 0 0 0

    sysmaintplan_log PK_sysmaintplan_taskdetail_id 2 2 1 0 0 0

    sysmaintplan_subplans PK_sysmaintplan_subplan 2 2 1 0 0 0

    sysnsobjs nc 2 2 1 0 0 0

    sysnsobjs clst 2 2 1 0 0 0

    sysowners clst 2 2 1 0 0 0

    sysowners nc1 2 2 1 0 0 0

    sysowners nc2 2 2 1 0 0 0

    sysqnames nc1 2 2 1 0 0 0

    sysqnames clst 2 2 1 0 0 0

    sysrts clst 2 2 1 0 0 0

    sysrts nc1 2 2 1 0 0 0

    sysrts nc2 2 2 1 0 0 0

    sysscalartypes nc2 2 2 1 0 0 0

    sysscalartypes nc1 2 2 1 0 0 0

    sysscalartypes clst 2 2 1 0 0 0

    sysschedules PK__sysschedules__1FCDBCEB 2 2 1 0 0 0

    sysschobjs nc3 2 2 1 0 0 0

    sysserefs clust 2 2 1 0 0 0

    syssessions PK__syssessions__15502E78 2 2 1 0 0 0

    syssessions nonclust 2 2 1 0 0 0

    syssingleobjrefs nc1 2 2 1 0 0 0

    syssubsystems nc1 2 2 1 0 0 0

    syssubsystems clust 2 2 1 0 0 0

    sysxmlcomponent cl 2 2 1 0 0 0

    sysxmlcomponent nc1 2 2 1 0 0 0

    sysxmlfacet cl 2 2 1 0 0 0

    sysxmlplacement cl 2 2 1 0 0 0

    sysxmlplacement nc1 2 2 1 0 0 0

    restorefile NULL 1 1 0 0 0 0

    restorefilegroup NULL 1 1 0 0 0 0

    log_shipping_monitor_alert PK__log_shipping_mon__16644E42 0 0 0 0 0 0

    log_shipping_monitor_error_detail c1lsmonitor_error_detail 0 0 0 0 0 0

    log_shipping_monitor_error_detail nc2lsmonitor_error_detail 0 0 0 0 0 0

    log_shipping_monitor_error_detail nc3lsmonitor_error_detail 0 0 0 0 0 0

    log_shipping_monitor_history_detail nc3lsmonitor_history_detail 0 0 0 0 0 0

    log_shipping_monitor_history_detail nc2lsmonitor_history_detail 0 0 0 0 0 0

    log_shipping_monitor_history_detail c1lsmonitor_history_detail 0 0 0 0 0 0

    log_shipping_monitor_primary PK__log_shipping_mon__0CDAE408 0 0 0 0 0 0

    log_shipping_monitor_primary uc1lsmonitor_primary 0 0 0 0 0 0

    log_shipping_monitor_secondary uc1lsmonitor_secondary 0 0 0 0 0 0

    log_shipping_monitor_secondary nc2lsmonitor_secondary 0 0 0 0 0 0

    log_shipping_monitor_secondary nc3lsmonitor_secondary 0 0 0 0 0 0

    log_shipping_monitor_secondary nc1lsmonitor_secondary 0 0 0 0 0 0

    log_shipping_monitor_secondary pklsmonitor_secondary 0 0 0 0 0 0

    log_shipping_primaries PK__log_shipping_pri__5E1FF51F 0 0 0 0 0 0

    log_shipping_primary_databases PK__log_shipping_pri__08162EEB 0 0 0 0 0 0

    log_shipping_primary_databases uc1lsprimary_databases 0 0 0 0 0 0

    log_shipping_primary_databases nc2lsprimary_databases 0 0 0 0 0 0

    log_shipping_primary_databases nc1lsprimary_databases 0 0 0 0 0 0

    log_shipping_primary_databases UQ__log_shipping_pri__090A5324 0 0 0 0 0 0

    log_shipping_primary_secondaries nc1lsprimary_secondaries 0 0 0 0 0 0

    log_shipping_primary_secondaries pklsprimary_secondaries 0 0 0 0 0 0

    log_shipping_secondaries NULL 0 0 0 0 0 0

    log_shipping_secondary PK__log_shipping_sec__10AB74EC 0 0 0 0 0 0

    log_shipping_secondary uc1lssecondary 0 0 0 0 0 0

    log_shipping_secondary nc2lssecondary 0 0 0 0 0 0

    log_shipping_secondary nc1lssecondary 0 0 0 0 0 0

    log_shipping_secondary_databases nc1lssecondary_databases 0 0 0 0 0 0

    log_shipping_secondary_databases PK__log_shipping_sec__1293BD5E 0 0 0 0 0 0

    logmarkhistory NULL 0 0 0 0 0 0

    logmarkhistory logmarkhistory1 0 0 0 0 0 0

    logmarkhistory logmarkhistory2 0 0 0 0 0 0

    queue_messages_1977058079 queue_secondary_index 0 0 0 0 0 0

    queue_messages_1977058079 queue_clustered_index 0 0 0 0 0 0

    queue_messages_2009058193 queue_clustered_index 0 0 0 0 0 0

    queue_messages_2009058193 queue_secondary_index 0 0 0 0 0 0

    queue_messages_2041058307 queue_secondary_index 0 0 0 0 0 0

    queue_messages_2041058307 queue_clustered_index 0 0 0 0 0 0

    queue_messages_704721563 queue_clustered_index 0 0 0 0 0 0

    queue_messages_704721563 queue_secondary_index 0 0 0 0 0 0

    queue_messages_736721677 queue_secondary_index 0 0 0 0 0 0

    queue_messages_736721677 queue_clustered_index 0 0 0 0 0 0

    sqlagent_info NULL 0 0 0 0 0 0

    suspect_pages NULL 0 0 0 0 0 0

    sysalerts ByName 0 0 0 0 0 0

    sysalerts ByID 0 0 0 0 0 0

    sysasymkeys nc3 0 0 0 0 0 0

    sysasymkeys nc1 0 0 0 0 0 0

    sysasymkeys cl 0 0 0 0 0 0

    sysbinsubobjs clst 0 0 0 0 0 0

    sysbinsubobjs nc1 0 0 0 0 0 0

    sysdbmaintplan_databases UQ__sysdbmaintplan_d__4924D839 0 0 0 0 0 0

    sysdbmaintplan_history clust 0 0 0 0 0 0

    sysdbmaintplan_history UQ__sysdbmaintplan_h__4C0144E4 0 0 0 0 0 0

    sysdbmaintplan_jobs UQ__sysdbmaintplan_j__46486B8E 0 0 0 0 0 0

    sysdownloadlist nc1 0 0 0 0 0 0

    sysdownloadlist clust 0 0 0 0 0 0

    sysdownloadlist nc2 0 0 0 0 0 0

    sysdtslog90 PK__sysdtslog90__79C80F94 0 0 0 0 0 0

    sysdtspackagelog PK__sysdtspackagelog__1C873BEC 0 0 0 0 0 0

    sysdtspackages pk_dtspackages 0 0 0 0 0 0

    sysdtspackages UQ__sysdtspackages__0C50D423 0 0 0 0 0 0

    sysdtssteplog PK__sysdtssteplog__1F63A897 0 0 0 0 0 0

    sysdtstasklog PK__sysdtstasklog__22401542 0 0 0 0 0 0

    sysftinds clst 0 0 0 0 0 0

    sysguidrefs cl 0 0 0 0 0 0

    sysguidrefs nc 0 0 0 0 0 0

    sysjobstepslogs PK__sysjobstepslogs__1B0907CE 0 0 0 0 0 0

    sysmail_account SYSMAIL_ACCOUNT_IDMustBeUnique 0 0 0 0 0 0

    sysmail_account SYSMAIL_ACCOUNT_NameMustBeUnique 0 0 0 0 0 0

    sysmail_attachments NULL 0 0 0 0 0 0

    sysmail_attachments_transfer PK__sysmail_attachme__72B0FDB1 0 0 0 0 0 0

    sysmail_log sysmail_log_id_MustBeUnique 0 0 0 0 0 0

    sysmail_mailitems sysmail_mailitems_id_MustBeUnique 0 0 0 0 0 0

    sysmail_principalprofile SYSMAIL_PRINCIPALPROFILE_ProfilePrincipalMustBeUnique 0 0 0 0 0 0

    sysmail_profile SYSMAIL_PROFILE_IDMustBeUnique 0 0 0 0 0 0

    sysmail_profile SYSMAIL_PROFILE_NameMustBeUnique 0 0 0 0 0 0

    sysmail_profileaccount SYSMAIL_ACCOUNT_ProfileAccountMustBeUnique 0 0 0 0 0 0

    sysmail_query_transfer PK__sysmail_query_tr__6FD49106 0 0 0 0 0 0

    sysmail_send_retries PK__sysmail_send_ret__6CA31EA0 0 0 0 0 0 0

    sysmail_server SYSMAIL_ACCOUNT_AccountServerTypeMustBeUnique 0 0 0 0 0 0

    sysmaintplan_logdetail NULL 0 0 0 0 0 0

    sysnotifications ByAlertIDAndOperatorID 0 0 0 0 0 0

    sysoperators ByName 0 0 0 0 0 0

    sysoperators ByID 0 0 0 0 0 0

    sysoriginatingservers UQ__sysoriginatingse__09DE7BCC 0 0 0 0 0 0

    sysoriginatingservers UQ__sysoriginatingse__08EA5793 0 0 0 0 0 0

    sysproxies clust 0 0 0 0 0 0

    sysproxies nc1 0 0 0 0 0 0

    sysproxylogin clust 0 0 0 0 0 0

    sysproxysubsystem clust 0 0 0 0 0 0

    sysremsvcbinds clst 0 0 0 0 0 0

    sysremsvcbinds nc1 0 0 0 0 0 0

    sysremsvcbinds nc2 0 0 0 0 0 0

    sysrowsetrefs clust 0 0 0 0 0 0

    syssqlguides clst 0 0 0 0 0 0

    syssqlguides nc1 0 0 0 0 0 0

    syssqlguides nc2 0 0 0 0 0 0

    systargetservergroupmembers nc1 0 0 0 0 0 0

    systargetservergroupmembers clust 0 0 0 0 0 0

    systargetservergroups clust 0 0 0 0 0 0

    systargetservers clust 0 0 0 0 0 0

    systargetservers nc1 0 0 0 0 0 0

    systaskids clust 0 0 0 0 0 0

    systypedsubobjs nc 0 0 0 0 0 0

    systypedsubobjs clst 0 0 0 0 0 0

    sysxprops clust 0 0 0 0 0 0

  • What does the following statement return:

    SELECT *

    FROM sys.service_queues

    WHERE object_id=1165247206

    I still assume it has to do with ServiceBroker.

    About 6000 rows in sys.conversation_endpoints sounds unusual...

    Could you also please attach the result of the following query?

    SELECT top 100 * FROM sys.conversation_endpoints with (nolock)



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • Here they are:

    WMIEventProviderNotificationQueue 1165247206 NULL 1 0 SQ SERVICE_QUEUE 2011-08-02 08:27:43.217 2011-08-02 08:27:43.217 0 0 0 0 NULL NULL 0 1 1 0

    and....

    5BD74543-8571-E011-B2EC-0026551193F8 62453D36-5518-4B59-9AEE-C7C56D65C098 1 2 5CD74543-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:12.060 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    81A3FA0D-8671-E011-B2EC-0026551193F8 9FC84446-2AC1-4288-A1DF-807D329F51D1 1 2 82A3FA0D-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:09:47.580 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    7057CDE2-8571-E011-B2EC-0026551193F8 AFCFC9A5-9B00-4C41-8E18-8078926A4480 1 2 7157CDE2-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:08:36.407 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    E442B2DC-4DD0-E011-A494-0026551193F8 8A1263FE-73B6-415C-9B45-8070A2305870 1 2 E542B2DC-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:00.483 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    D2608686-8571-E011-B2EC-0026551193F8 7D65C055-63F1-434B-A6CA-806A9D2665C8 1 2 D3608686-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:06:07.653 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    A4A4FA0D-8671-E011-B2EC-0026551193F8 B7363F52-BB2F-42CA-BCFB-8062380CC393 1 2 A5A4FA0D-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:09:55.033 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    61542CAB-8571-E011-B2EC-0026551193F8 16939A84-0EE5-42F1-A6BD-800455C5741A 1 2 62542CAB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:10.343 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    9942B2DC-4DD0-E011-A494-0026551193F8 7F424051-77AA-430C-8085-7FF50A2D4E21 1 2 9A42B2DC-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:56:58.700 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    D730FB5D-8671-E011-B2EC-0026551193F8 0CF38EEF-04CE-41C5-AB48-C7CAB9D9FBC1 1 2 D830FB5D-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:12:09.007 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    0129B412-4ED0-E011-A494-0026551193F8 E6298C61-3737-4347-8B55-C85F94642759 1 2 0229B412-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:29.437 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    2BF917F5-8571-E011-B2EC-0026551193F8 FA434DD2-E608-4BD8-B44B-C7E8E53B10FF 1 2 2CF917F5-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:08.563 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    0A92AAFA-4DD0-E011-A494-0026551193F8 5F3D4338-C5E7-474F-984B-C7F3D048B9EA 1 2 0B92AAFA-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:47.000 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    6AF23F26-8671-E011-B2EC-0026551193F8 92B107CC-727C-4753-8895-802422ACFEB2 1 2 6BF23F26-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:10:28.800 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    F212AED6-4DD0-E011-A494-0026551193F8 00CCF4F8-1F44-492D-BD03-C86C24286B3A 1 2 F312AED6-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:56:47.420 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    C4E8B597-8471-E011-B2EC-0026551193F8 D5293104-2E75-4FD2-ABA4-C7C4772DB8C4 1 2 C5E8B597-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:20.837 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    94DC24A4-8471-E011-B2EC-0026551193F8 6BF1A9C0-9733-4C74-8E0B-80856CA0D3C9 1 2 95DC24A4-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:49.617 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    5C5877CA-8571-E011-B2EC-0026551193F8 EEE9B85D-0520-4409-A17B-80855D8E5FD5 1 2 5D5877CA-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:55.657 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    E211FF22-D774-E011-9D9C-0026551193F8 D80BCB3E-A224-46D8-886C-C8840D0925A1 1 2 E311FF22-D774-E011-9D9C-0026551193F8 2 2079-05-20 19:27:48.597 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    3EC66AE9-8471-E011-B2EC-0026551193F8 68FE3469-D81F-4038-8897-4A133A0E8A81 1 2 3FC66AE9-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:40.960 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    7A5BC407-8671-E011-B2EC-0026551193F8 D9FB75BB-5BA6-49B9-844F-4A16FEDEC9B9 1 2 7B5BC407-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:09:39.533 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    98DC89FB-8571-E011-B2EC-0026551193F8 E35378FA-3EBD-4DB0-95A7-4A194032FA46 1 2 99DC89FB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:22.377 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    BEA3D99B-8671-E011-B2EC-0026551193F8 03029803-8856-4EC3-AD63-C7F0F0CA157F 1 2 BFA3D99B-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:13:49.460 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    0E43B2DC-4DD0-E011-A494-0026551193F8 A3FDFA55-0E35-466A-B936-4A26F8739F37 1 2 0F43B2DC-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:01.077 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    61F917F5-8571-E011-B2EC-0026551193F8 EF269B54-36A6-4AC3-A106-4A2902EFB722 1 2 62F917F5-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:09.563 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    50D34E49-8571-E011-B2EC-0026551193F8 6FF2FEAF-9B22-4806-9A8F-4A2A1C2E2376 1 2 51D34E49-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:24.730 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B987E8BC-8471-E011-B2EC-0026551193F8 60C69BFE-D6F4-4215-A57D-C889FF841414 1 2 BA87E8BC-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:00:24.913 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    25DC24A4-8471-E011-B2EC-0026551193F8 D2F3B7B3-514D-47B4-9803-C7FDE3DD313C 1 2 26DC24A4-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:43.490 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B699AD0C-4ED0-E011-A494-0026551193F8 80EEA4BB-6CFF-4C1E-9B68-C80A1AC45D83 1 2 B799AD0C-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:23.967 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    A057CDE2-8571-E011-B2EC-0026551193F8 86BF8A46-5CE0-4A7F-978E-4A5E9B9A41A6 1 2 A157CDE2-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:08:38.190 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    285138DC-8471-E011-B2EC-0026551193F8 F137BAD0-7BFE-42E4-960C-4A61510122F9 1 2 295138DC-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:17.413 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    C43C9C91-8471-E011-B2EC-0026551193F8 B8A92E18-01A4-457F-8AE5-A758FEB8C9D8 1 2 C53C9C91-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:17.007 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    42E9B597-8471-E011-B2EC-0026551193F8 E0D0FB37-FCF3-4AB7-A9D6-5ECD857459A9 1 2 43E9B597-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:24.990 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    77C66AE9-8471-E011-B2EC-0026551193F8 6784AB5A-564F-4BF4-8A5C-8049459B12F8 1 2 78C66AE9-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:41.803 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    015EE330-8571-E011-B2EC-0026551193F8 86DC6559-8B43-4CB5-933F-5EEDEA6B380D 1 2 025EE330-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:03:41.103 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    16F917F5-8571-E011-B2EC-0026551193F8 F9AD9F43-E23A-4519-A2A6-5EEE48DC2B11 1 2 17F917F5-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:07.657 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    98A48E4F-8571-E011-B2EC-0026551193F8 5C57D887-46B8-40BF-97F4-5EEF9EDB4C1A 1 2 99A48E4F-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:32.310 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    C949AFE2-4DD0-E011-A494-0026551193F8 C0B22C15-5105-4AEF-A44C-5F195A9A8775 1 2 CA49AFE2-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:05.043 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    98D34E49-8571-E011-B2EC-0026551193F8 0C031100-34AB-41E8-BF09-802D87C7638B 1 2 99D34E49-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:26.840 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    77532CAB-8571-E011-B2EC-0026551193F8 59B96BF6-7F73-4879-8765-5F26C9369221 1 2 78532CAB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:02.640 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    04FD0E45-8671-E011-B2EC-0026551193F8 3E209F4E-46D1-45CD-AC42-5F3D19016499 1 2 05FD0E45-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:11:28.350 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    6962A203-8571-E011-B2EC-0026551193F8 BE6FD365-1F80-4FDE-BDF3-49E79D6D8897 1 2 6A62A203-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:02:24.493 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    495EE330-8571-E011-B2EC-0026551193F8 AD145BD6-C3DA-4458-B955-5F56D0F25CDA 1 2 4A5EE330-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:03:44.950 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    EC5877CA-8571-E011-B2EC-0026551193F8 226D1180-7BE6-4CA5-ABC9-C81011A123C5 1 2 ED5877CA-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:59.030 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    DCD27A95-8671-E011-B2EC-0026551193F8 67FD84F6-CE5D-478F-9D68-5F80DA80B7AF 1 2 DDD27A95-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:13:34.897 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    F54AAFE2-4DD0-E011-A494-0026551193F8 053B4813-6BC9-447E-95E8-5F81E68310AB 1 2 F64AAFE2-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:11.217 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    5F8BADF4-4DD0-E011-A494-0026551193F8 405AAAE2-C917-407B-A94F-C8162E716B9C 1 2 608BADF4-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:41.437 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    FC17B1E8-4DD0-E011-A494-0026551193F8 A0E1CC62-2D17-4892-80E6-49EFE38CF9ED 1 2 FD17B1E8-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:20.233 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    F993AAFA-4DD0-E011-A494-0026551193F8 E0DC83C8-89BD-47C9-9237-5FA4F1382CCC 1 2 FA93AAFA-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:52.060 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    6E532CAB-8571-E011-B2EC-0026551193F8 5EFA6142-EDE5-468E-8926-5FAA5D9ADA95 1 2 6F532CAB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:02.640 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    CA08049E-8471-E011-B2EC-0026551193F8 CB9EEE4B-BD59-4C5F-9147-21B2BE4B558F 1 2 CB08049E-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:36.367 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    BD22CECF-8471-E011-B2EC-0026551193F8 48A05560-4155-4FE0-A005-21BA81C0B730 1 2 BE22CECF-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:00:53.867 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    2CD85DB1-8571-E011-B2EC-0026551193F8 D5D59C6A-E4DE-4D1E-ABBD-49F5642F35DA 1 2 2DD85DB1-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:20.580 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    488FB006-4ED0-E011-A494-0026551193F8 B58E95C6-3AB3-4850-95AA-49F8A794F712 1 2 498FB006-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:09.043 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    46253CAA-8471-E011-B2EC-0026551193F8 AA8203E2-08BC-41C8-9B1B-21D14C799FD7 1 2 47253CAA-8471-E011-B2EC-0026551193F8 2 2079-05-16 13:59:52.040 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    615977CA-8571-E011-B2EC-0026551193F8 A4F52F8E-E274-4A1E-8AC6-21D2684A876E 1 2 625977CA-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:08:02.203 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    528CADF4-4DD0-E011-A494-0026551193F8 3F2F74C5-8D7D-4463-9A78-2209B51FF7B9 1 2 538CADF4-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:43.530 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    0C98AD0C-4ED0-E011-A494-0026551193F8 3206619D-1280-4C08-8A8E-220DFF51481C 1 2 0D98AD0C-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:20.357 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    213E9555-8571-E011-B2EC-0026551193F8 CE88D808-4066-405B-9B8F-2212C3960AB0 1 2 223E9555-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:45.310 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    F08FB006-4ED0-E011-A494-0026551193F8 13DB57F1-4EBB-4219-A105-22285E7785B8 1 2 F18FB006-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:10.140 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    DB205D74-8571-E011-B2EC-0026551193F8 364DF16F-6355-4B12-A787-223AF1FC75EC 1 2 DC205D74-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:05:39.467 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B506917A-8571-E011-B2EC-0026551193F8 F19EEFDA-BEB8-4D34-BF84-2240D9A053D4 1 2 B606917A-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:05:49.480 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    95A48E4F-8571-E011-B2EC-0026551193F8 BD3407AE-2EE8-41F5-957B-2246B767F7A6 1 2 96A48E4F-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:32.310 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    05A48E4F-8571-E011-B2EC-0026551193F8 9B6991C9-C0FB-4920-A0E9-D8317112D6E0 1 2 06A48E4F-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:28.920 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    3427B412-4ED0-E011-A494-0026551193F8 154753A7-3431-4FF0-A79F-D83637DF164E 1 2 3527B412-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:26.187 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    4E22AADC-8571-E011-B2EC-0026551193F8 80E9EA4F-2F4A-4DE2-8FA7-D84173E7763D 1 2 4F22AADC-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:08:28.657 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    AD90B006-4ED0-E011-A494-0026551193F8 D69E162E-EEFE-48C9-B622-D851761CFF5E 1 2 AE90B006-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:11.530 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    8A50F53E-8671-E011-B2EC-0026551193F8 C482A1BA-0CEE-4905-B093-4A0495F0C73F 1 2 8B50F53E-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:11:14.270 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    25E42183-8671-E011-B2EC-0026551193F8 6FFDD006-3C03-4480-A60B-D85BC05EA5AE 1 2 26E42183-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:13:11.693 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    2E7E3137-8571-E011-B2EC-0026551193F8 CAA0892A-875C-48B2-B976-4A1FCF71FE99 1 2 2F7E3137-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:03:55.870 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    5588C49E-8571-E011-B2EC-0026551193F8 8E7DC485-39ED-48BD-BE93-D86E38D1A6F3 1 2 5688C49E-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:06:47.060 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    11CE06D6-8471-E011-B2EC-0026551193F8 EAD05F05-327D-4BD5-B4BC-D8820879E454 1 2 12CE06D6-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:10.163 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    BF12AED6-4DD0-E011-A494-0026551193F8 EDE23B7B-29F6-46F0-9162-D88E88944486 1 2 C012AED6-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:56:46.577 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    C911AD01-8671-E011-B2EC-0026551193F8 21085496-B68C-441F-A8E6-D88FD1AAADAD 1 2 CA11AD01-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:09:28.457 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    4F4BAFE2-4DD0-E011-A494-0026551193F8 49CF8FEF-9776-4982-A6C1-D8960286B8FE 1 2 504BAFE2-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:13.250 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    9A26F7C3-8571-E011-B2EC-0026551193F8 58CFF552-62E2-47AC-BBBE-D89A649EC792 1 2 9B26F7C3-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:44.423 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    96389E5B-8571-E011-B2EC-0026551193F8 FC50311F-767D-466D-A04B-D8B831F5514F 1 2 97389E5B-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:50.010 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    8206917A-8571-E011-B2EC-0026551193F8 7D92FAB3-5B62-40E0-978B-370A4F48CE1D 1 2 8306917A-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:05:48.200 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    8B4E482E-45A7-E011-BA30-0026551193F8 4D9A964C-E8EA-4C9E-B42F-374190728C77 1 2 8C4E482E-45A7-E011-BA30-0026551193F8 2 2079-07-23 23:41:27.327 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    36480720-8671-E011-B2EC-0026551193F8 EB91217C-2609-4790-AEF3-3749F0C2192E 1 2 37480720-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:10:22.067 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    885138DC-8471-E011-B2EC-0026551193F8 1849A022-DF8C-40E2-BFAB-4A4A8476ED63 1 2 895138DC-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:20.540 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B090B006-4ED0-E011-A494-0026551193F8 4B1B76CF-F4A2-4DFF-9032-4A5268C642FB 1 2 B190B006-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:11.530 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    E687E8BC-8471-E011-B2EC-0026551193F8 335645DC-4CC2-4F2D-AED4-37526E619187 1 2 E787E8BC-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:00:31.447 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    1328B412-4ED0-E011-A494-0026551193F8 6055F8E7-E11B-4D98-8B0C-376F1587B58A 1 2 1428B412-4ED0-E011-A494-0026551193F8 2 2079-09-14 04:58:27.653 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    E3158E80-8571-E011-B2EC-0026551193F8 879F9B05-6041-4634-B4F2-21BB865AE6C9 1 2 E4158E80-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:05:55.983 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    EB11FF22-D774-E011-9D9C-0026551193F8 029493BB-57CC-46DC-A126-378465A9C18D 1 2 EC11FF22-D774-E011-9D9C-0026551193F8 2 2079-05-20 19:27:48.597 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    ADDC89FB-8571-E011-B2EC-0026551193F8 B38D5821-21CF-4D52-825D-379381FC1BA9 1 2 AEDC89FB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:23.080 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    56F7CA61-8571-E011-B2EC-0026551193F8 D8616018-8DAD-4352-83B1-21C3370D4D6B 1 2 57F7CA61-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:05:01.247 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    4D5B09C3-8471-E011-B2EC-0026551193F8 E4F75C09-8DE2-474F-B09E-37AA00A28E16 1 2 4E5B09C3-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:00:40.913 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    C13D9555-8571-E011-B2EC-0026551193F8 156D1512-22F3-4D55-8682-37B97C51CE3B 1 2 C23D9555-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:04:43.230 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B918B1E8-4DD0-E011-A494-0026551193F8 83479C7E-552B-45DE-B728-37BFA38C8E5A 1 2 BA18B1E8-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:22.983 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    2BB21614-8671-E011-B2EC-0026551193F8 FDBB49C3-7161-46E5-987A-9F23E417B739 1 2 2CB21614-8671-E011-B2EC-0026551193F8 2 2079-05-16 14:10:00.910 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    D18BADF4-4DD0-E011-A494-0026551193F8 BE3707C9-A2A9-4118-A3B4-9F25CB426FE8 1 2 D28BADF4-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:42.607 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    9E18B1E8-4DD0-E011-A494-0026551193F8 7B93A4CB-74C9-4CCD-80E0-9F42E3584CF7 1 2 9F18B1E8-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:22.640 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    CF26F7EE-8571-E011-B2EC-0026551193F8 2C045CEA-5311-4FBF-85E3-4A58DCC1A03C 1 2 D026F7EE-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:09:00.737 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    23D85DB1-8571-E011-B2EC-0026551193F8 E061725E-6F77-4641-B25B-9F5607BA818F 1 2 24D85DB1-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:20.580 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    691EAEEE-4DD0-E011-A494-0026551193F8 3C775AC8-17B6-492F-9547-9F585F6C8BE2 1 2 6A1EAEEE-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:24.187 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    89532CAB-8571-E011-B2EC-0026551193F8 86512FFC-147C-45A2-8B92-9F65B653B44F 1 2 8A532CAB-8571-E011-B2EC-0026551193F8 2 2079-05-16 14:07:03.437 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    0F91AAFA-4DD0-E011-A494-0026551193F8 A4DE1573-53B1-4CD1-B587-9F68160A817D 1 2 1091AAFA-4DD0-E011-A494-0026551193F8 2 2079-09-14 04:57:44.653 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    B313FF22-D774-E011-9D9C-0026551193F8 2CCCBB7C-D98E-40F7-9D29-9F6B9B032038 1 2 B413FF22-D774-E011-9D9C-0026551193F8 2 2079-05-20 19:27:54.080 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

    4A23CECF-8471-E011-B2EC-0026551193F8 F8C72349-52C9-438B-B033-9F855CCAFB0B 1 2 4B23CECF-8471-E011-B2EC-0026551193F8 2 2079-05-16 14:01:03.367 SO STARTED_OUTBOUND SQL/Notifications/ProcessWMIEventProviderNotification/v1.0 74E66820-0D0F-49E4-9161-F151DC2F2242 4 -1 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 1900-01-01 00:00:00.000 1900-01-01 00:00:00.000 0 0x000000000000 -1 0 0 0 -1 0 0 1

  • We're getting closer...

    As expected, it's a ServiceBroker communication causing the issue. Namely a WMI Provider. But at this point I'm getting lost since I've never used WMI. It seems like it's some sort of trace captured using WMI Provider (maybe this link can help you any further.

    You might be able to get more details by running

    SELECT COUNT(*) FROM WMIEventProviderNotificationQueue WITH (NOLOCK)

    SELECT TOP 10 * FROM WMIEventProviderNotificationQueue WITH (NOLOCK)

    Side note: the NOLOCK hint is used purposely under this very specific scenario and is not a general recommendation.



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

Viewing 15 posts - 1 through 15 (of 30 total)

You must be logged in to reply to this topic. Login to reply