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_1165247206queue_clustered_index465802646411584581182363903625935790

    queue_messages_1165247206queue_secondary_index988989889197488772772761

    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_1165247206queue_clustered_index466621046500404589950364543632835858

    queue_messages_1165247206queue_secondary_index990909908397677774774763

    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:

    sysjobhistory360 2776 KB888 KB128 KB1760 KB

    backupset26 592 KB56 KB232 KB304 KB

    backupfile54 400 KB56 KB96 KB248 KB

    backupmediaset26 264 KB24 KB112 KB128 KB

    backupmediafamily26 208 KB16 KB96 KB96 KB

    backupfilegroup26 136 KB40 KB40 KB56 KB

    sysjobactivity414 136 KB88 KB16 KB32 KB

    sysjobs10 64 KB8 KB56 KB0 KB

    sysjobsteps10 48 KB8 KB40 KB0 KB

    sysdtspackagefolders902 48 KB8 KB40 KB0 KB

    MSdbms_datatype_mapping325 40 KB24 KB16 KB0 KB

    MSdbms_map248 40 KB24 KB16 KB0 KB

    sysjobservers10 32 KB8 KB24 KB0 KB

    syssubsystems11 32 KB8 KB24 KB0 KB

    sysdtscategories3 32 KB8 KB24 KB0 KB

    syssessions102 32 KB8 KB24 KB0 KB

    sysdtspackages903 32 KB8 KB24 KB0 KB

    restorehistory0 32 KB8 KB24 KB0 KB

    syscachedcredentials2 16 KB8 KB8 KB0 KB

    sysdbmaintplans1 16 KB8 KB8 KB0 KB

    sysmail_configuration7 16 KB8 KB8 KB0 KB

    sysmaintplan_subplans3 16 KB8 KB8 KB0 KB

    sysschedules10 16 KB8 KB8 KB0 KB

    MSdbms7 16 KB8 KB8 KB0 KB

    MSdbms_datatype141 16 KB8 KB8 KB0 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_1165247206queue_clustered_index468054646653164605029365663644735976

    queue_messages_1165247206queue_secondary_index994189941198000776776765

    sysdercvcl426421416333

    sysjobhistoryclust340120110200

    sysobjvaluesclst280258234221

    syscolparsclst737371000

    sysdesendcl584946000

    backupfilePK__backupfile__7B26482150197000

    sysconvgroupclst503431000

    backupsetbackupsetuuid391915000

    backupsetPK__backupset__756D6ECB35177000

    syscolparsnc332927000

    sysmultiobjrefsclst251917000

    sysobjkeycryptscl252523000

    sysxmitqueueclst2391000

    [/i][/b]sysdtspackages90NULL20161000

    backupmediasetPK__backupmediaset__6FB495751953000

    backupfilegroupPK__backupfilegroup__7849DB7617105000

    syshobtcolumnsclust171412000

    sysjobactivityclust171311000

    sysmultiobjrefsnc1171210000

    sysrowsetcolumnsclust171412000

    sysschobjsclst171513000

    backupmediafamilybackupmediafamilyuuid15108000

    backupmediasetbackupmediasetuuid141210000

    backupmediafamilyPK__backupmediafamil__719CDDE71142000

    sysidxstatsclst997000

    sysiscolsclst886000

    sysschobjsnc2886000

    sysschobjsnc1775000

    sysidxstatsnc664000

    sysjobhistorync1664000

    MSdbms_datatype_mappingpk_MSdbms_datatype_mapping553000

    MSdbms_mappk_MSdbms_map553000

    sysallocunitsclust553000

    syshobtsclust553000

    sysprivsclust553000

    sysrowsetsclust553000

    syssingleobjrefsclst442000

    MSdbmspk_MSdbms221000

    MSdbms_datatypepk_MSdbms_datatype221000

    restorehistoryPK__restorehistory__7E02B4CC221000

    restorehistoryrestorehistorybackupset221000

    sysbinobjsnc1221000

    sysbinobjsclst221000

    syscachedcredentialsPK__syscachedcredent__3C69FB99221000

    syscategoriesclust221000

    syscertsnc1221000

    syscertscl221000

    syscertsnc2221000

    syscertsnc3221000

    sysclsobjsclst221000

    sysclsobjsnc221000

    sysdbfilesclst221000

    sysdbmaintplansPK__sysdbmaintplans__3F9B6DFF221000

    sysdtscategoriespk_dtscategories221000

    sysdtscategoriesuq_dtscategories_name_parent221000

    sysdtspackagefolders90U_sysdtspackagefolders90uniquepath221000

    sysdtspackagefolders90PK_sysdtspackagefolders90221000

    sysdtspackagefolders90NULL221000

    sysdtspackages90pk_sysdtspackages90221000

    sysfiles1NULL221000

    sysjobsclust221000

    sysjobsnc1221000

    sysjobsnc4221000

    sysjobsnc3221000

    sysjobschedulesclust221000

    sysjobserversclust221000

    sysjobserversnc1221000

    sysjobstepsnc1221000

    sysjobstepsnc2221000

    sysjobstepsclust221000

    sysmail_configurationSYSMAIL_CONFIGURATION_ParamnameMustBeUnique221000

    sysmail_servertypeSYSMAIL_SERVERTYPE_TypeMustBeUnique221000

    sysmaintplan_logPK_sysmaintplan_taskdetail_id221000

    sysmaintplan_subplansPK_sysmaintplan_subplan221000

    sysnsobjsnc221000

    sysnsobjsclst221000

    sysownersclst221000

    sysownersnc1221000

    sysownersnc2221000

    sysqnamesnc1221000

    sysqnamesclst221000

    sysrtsclst221000

    sysrtsnc1221000

    sysrtsnc2221000

    sysscalartypesnc2221000

    sysscalartypesnc1221000

    sysscalartypesclst221000

    sysschedulesPK__sysschedules__1FCDBCEB221000

    sysschobjsnc3221000

    sysserefsclust221000

    syssessionsPK__syssessions__15502E78221000

    syssessionsnonclust221000

    syssingleobjrefsnc1221000

    syssubsystemsnc1221000

    syssubsystemsclust221000

    sysxmlcomponentcl221000

    sysxmlcomponentnc1221000

    sysxmlfacetcl221000

    sysxmlplacementcl221000

    sysxmlplacementnc1221000

    restorefileNULL110000

    restorefilegroupNULL110000

    log_shipping_monitor_alertPK__log_shipping_mon__16644E42000000

    log_shipping_monitor_error_detailc1lsmonitor_error_detail000000

    log_shipping_monitor_error_detailnc2lsmonitor_error_detail000000

    log_shipping_monitor_error_detailnc3lsmonitor_error_detail000000

    log_shipping_monitor_history_detailnc3lsmonitor_history_detail000000

    log_shipping_monitor_history_detailnc2lsmonitor_history_detail000000

    log_shipping_monitor_history_detailc1lsmonitor_history_detail000000

    log_shipping_monitor_primaryPK__log_shipping_mon__0CDAE408000000

    log_shipping_monitor_primaryuc1lsmonitor_primary000000

    log_shipping_monitor_secondaryuc1lsmonitor_secondary000000

    log_shipping_monitor_secondarync2lsmonitor_secondary000000

    log_shipping_monitor_secondarync3lsmonitor_secondary000000

    log_shipping_monitor_secondarync1lsmonitor_secondary000000

    log_shipping_monitor_secondarypklsmonitor_secondary000000

    log_shipping_primariesPK__log_shipping_pri__5E1FF51F000000

    log_shipping_primary_databasesPK__log_shipping_pri__08162EEB000000

    log_shipping_primary_databasesuc1lsprimary_databases000000

    log_shipping_primary_databasesnc2lsprimary_databases000000

    log_shipping_primary_databasesnc1lsprimary_databases000000

    log_shipping_primary_databasesUQ__log_shipping_pri__090A5324000000

    log_shipping_primary_secondariesnc1lsprimary_secondaries000000

    log_shipping_primary_secondariespklsprimary_secondaries000000

    log_shipping_secondariesNULL000000

    log_shipping_secondaryPK__log_shipping_sec__10AB74EC000000

    log_shipping_secondaryuc1lssecondary000000

    log_shipping_secondarync2lssecondary000000

    log_shipping_secondarync1lssecondary000000

    log_shipping_secondary_databasesnc1lssecondary_databases000000

    log_shipping_secondary_databasesPK__log_shipping_sec__1293BD5E000000

    logmarkhistoryNULL000000

    logmarkhistorylogmarkhistory1000000

    logmarkhistorylogmarkhistory2000000

    queue_messages_1977058079queue_secondary_index000000

    queue_messages_1977058079queue_clustered_index000000

    queue_messages_2009058193queue_clustered_index000000

    queue_messages_2009058193queue_secondary_index000000

    queue_messages_2041058307queue_secondary_index000000

    queue_messages_2041058307queue_clustered_index000000

    queue_messages_704721563queue_clustered_index000000

    queue_messages_704721563queue_secondary_index000000

    queue_messages_736721677queue_secondary_index000000

    queue_messages_736721677queue_clustered_index000000

    sqlagent_infoNULL000000

    suspect_pagesNULL000000

    sysalertsByName000000

    sysalertsByID000000

    sysasymkeysnc3000000

    sysasymkeysnc1000000

    sysasymkeyscl000000

    sysbinsubobjsclst000000

    sysbinsubobjsnc1000000

    sysdbmaintplan_databasesUQ__sysdbmaintplan_d__4924D839000000

    sysdbmaintplan_historyclust000000

    sysdbmaintplan_historyUQ__sysdbmaintplan_h__4C0144E4000000

    sysdbmaintplan_jobsUQ__sysdbmaintplan_j__46486B8E000000

    sysdownloadlistnc1000000

    sysdownloadlistclust000000

    sysdownloadlistnc2000000

    sysdtslog90PK__sysdtslog90__79C80F94000000

    sysdtspackagelogPK__sysdtspackagelog__1C873BEC000000

    sysdtspackagespk_dtspackages000000

    sysdtspackagesUQ__sysdtspackages__0C50D423000000

    sysdtssteplogPK__sysdtssteplog__1F63A897000000

    sysdtstasklogPK__sysdtstasklog__22401542000000

    sysftindsclst000000

    sysguidrefscl000000

    sysguidrefsnc000000

    sysjobstepslogsPK__sysjobstepslogs__1B0907CE000000

    sysmail_accountSYSMAIL_ACCOUNT_IDMustBeUnique000000

    sysmail_accountSYSMAIL_ACCOUNT_NameMustBeUnique000000

    sysmail_attachmentsNULL000000

    sysmail_attachments_transferPK__sysmail_attachme__72B0FDB1000000

    sysmail_logsysmail_log_id_MustBeUnique000000

    sysmail_mailitemssysmail_mailitems_id_MustBeUnique000000

    sysmail_principalprofileSYSMAIL_PRINCIPALPROFILE_ProfilePrincipalMustBeUnique000000

    sysmail_profileSYSMAIL_PROFILE_IDMustBeUnique000000

    sysmail_profileSYSMAIL_PROFILE_NameMustBeUnique000000

    sysmail_profileaccountSYSMAIL_ACCOUNT_ProfileAccountMustBeUnique000000

    sysmail_query_transferPK__sysmail_query_tr__6FD49106000000

    sysmail_send_retriesPK__sysmail_send_ret__6CA31EA0000000

    sysmail_serverSYSMAIL_ACCOUNT_AccountServerTypeMustBeUnique000000

    sysmaintplan_logdetailNULL000000

    sysnotificationsByAlertIDAndOperatorID000000

    sysoperatorsByName000000

    sysoperatorsByID000000

    sysoriginatingserversUQ__sysoriginatingse__09DE7BCC000000

    sysoriginatingserversUQ__sysoriginatingse__08EA5793000000

    sysproxiesclust000000

    sysproxiesnc1000000

    sysproxyloginclust000000

    sysproxysubsystemclust000000

    sysremsvcbindsclst000000

    sysremsvcbindsnc1000000

    sysremsvcbindsnc2000000

    sysrowsetrefsclust000000

    syssqlguidesclst000000

    syssqlguidesnc1000000

    syssqlguidesnc2000000

    systargetservergroupmembersnc1000000

    systargetservergroupmembersclust000000

    systargetservergroupsclust000000

    systargetserversclust000000

    systargetserversnc1000000

    systaskidsclust000000

    systypedsubobjsnc000000

    systypedsubobjsclst000000

    sysxpropsclust000000

  • 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:

    WMIEventProviderNotificationQueue1165247206NULL10SQSERVICE_QUEUE2011-08-02 08:27:43.2172011-08-02 08:27:43.2170000NULLNULL0110

    and....

    5BD74543-8571-E011-B2EC-0026551193F862453D36-5518-4B59-9AEE-C7C56D65C098125CD74543-8571-E011-B2EC-0026551193F822079-05-16 14:04:12.060SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    81A3FA0D-8671-E011-B2EC-0026551193F89FC84446-2AC1-4288-A1DF-807D329F51D11282A3FA0D-8671-E011-B2EC-0026551193F822079-05-16 14:09:47.580SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    7057CDE2-8571-E011-B2EC-0026551193F8AFCFC9A5-9B00-4C41-8E18-8078926A4480127157CDE2-8571-E011-B2EC-0026551193F822079-05-16 14:08:36.407SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    E442B2DC-4DD0-E011-A494-0026551193F88A1263FE-73B6-415C-9B45-8070A230587012E542B2DC-4DD0-E011-A494-0026551193F822079-09-14 04:57:00.483SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    D2608686-8571-E011-B2EC-0026551193F87D65C055-63F1-434B-A6CA-806A9D2665C812D3608686-8571-E011-B2EC-0026551193F822079-05-16 14:06:07.653SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    A4A4FA0D-8671-E011-B2EC-0026551193F8B7363F52-BB2F-42CA-BCFB-8062380CC39312A5A4FA0D-8671-E011-B2EC-0026551193F822079-05-16 14:09:55.033SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    61542CAB-8571-E011-B2EC-0026551193F816939A84-0EE5-42F1-A6BD-800455C5741A1262542CAB-8571-E011-B2EC-0026551193F822079-05-16 14:07:10.343SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    9942B2DC-4DD0-E011-A494-0026551193F87F424051-77AA-430C-8085-7FF50A2D4E21129A42B2DC-4DD0-E011-A494-0026551193F822079-09-14 04:56:58.700SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    D730FB5D-8671-E011-B2EC-0026551193F80CF38EEF-04CE-41C5-AB48-C7CAB9D9FBC112D830FB5D-8671-E011-B2EC-0026551193F822079-05-16 14:12:09.007SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    0129B412-4ED0-E011-A494-0026551193F8E6298C61-3737-4347-8B55-C85F94642759120229B412-4ED0-E011-A494-0026551193F822079-09-14 04:58:29.437SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    2BF917F5-8571-E011-B2EC-0026551193F8FA434DD2-E608-4BD8-B44B-C7E8E53B10FF122CF917F5-8571-E011-B2EC-0026551193F822079-05-16 14:09:08.563SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    0A92AAFA-4DD0-E011-A494-0026551193F85F3D4338-C5E7-474F-984B-C7F3D048B9EA120B92AAFA-4DD0-E011-A494-0026551193F822079-09-14 04:57:47.000SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    6AF23F26-8671-E011-B2EC-0026551193F892B107CC-727C-4753-8895-802422ACFEB2126BF23F26-8671-E011-B2EC-0026551193F822079-05-16 14:10:28.800SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    F212AED6-4DD0-E011-A494-0026551193F800CCF4F8-1F44-492D-BD03-C86C24286B3A12F312AED6-4DD0-E011-A494-0026551193F822079-09-14 04:56:47.420SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    C4E8B597-8471-E011-B2EC-0026551193F8D5293104-2E75-4FD2-ABA4-C7C4772DB8C412C5E8B597-8471-E011-B2EC-0026551193F822079-05-16 13:59:20.837SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    94DC24A4-8471-E011-B2EC-0026551193F86BF1A9C0-9733-4C74-8E0B-80856CA0D3C91295DC24A4-8471-E011-B2EC-0026551193F822079-05-16 13:59:49.617SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    5C5877CA-8571-E011-B2EC-0026551193F8EEE9B85D-0520-4409-A17B-80855D8E5FD5125D5877CA-8571-E011-B2EC-0026551193F822079-05-16 14:07:55.657SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    E211FF22-D774-E011-9D9C-0026551193F8D80BCB3E-A224-46D8-886C-C8840D0925A112E311FF22-D774-E011-9D9C-0026551193F822079-05-20 19:27:48.597SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    3EC66AE9-8471-E011-B2EC-0026551193F868FE3469-D81F-4038-8897-4A133A0E8A81123FC66AE9-8471-E011-B2EC-0026551193F822079-05-16 14:01:40.960SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    7A5BC407-8671-E011-B2EC-0026551193F8D9FB75BB-5BA6-49B9-844F-4A16FEDEC9B9127B5BC407-8671-E011-B2EC-0026551193F822079-05-16 14:09:39.533SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    98DC89FB-8571-E011-B2EC-0026551193F8E35378FA-3EBD-4DB0-95A7-4A194032FA461299DC89FB-8571-E011-B2EC-0026551193F822079-05-16 14:09:22.377SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    BEA3D99B-8671-E011-B2EC-0026551193F803029803-8856-4EC3-AD63-C7F0F0CA157F12BFA3D99B-8671-E011-B2EC-0026551193F822079-05-16 14:13:49.460SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    0E43B2DC-4DD0-E011-A494-0026551193F8A3FDFA55-0E35-466A-B936-4A26F8739F37120F43B2DC-4DD0-E011-A494-0026551193F822079-09-14 04:57:01.077SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    61F917F5-8571-E011-B2EC-0026551193F8EF269B54-36A6-4AC3-A106-4A2902EFB7221262F917F5-8571-E011-B2EC-0026551193F822079-05-16 14:09:09.563SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    50D34E49-8571-E011-B2EC-0026551193F86FF2FEAF-9B22-4806-9A8F-4A2A1C2E23761251D34E49-8571-E011-B2EC-0026551193F822079-05-16 14:04:24.730SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B987E8BC-8471-E011-B2EC-0026551193F860C69BFE-D6F4-4215-A57D-C889FF84141412BA87E8BC-8471-E011-B2EC-0026551193F822079-05-16 14:00:24.913SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    25DC24A4-8471-E011-B2EC-0026551193F8D2F3B7B3-514D-47B4-9803-C7FDE3DD313C1226DC24A4-8471-E011-B2EC-0026551193F822079-05-16 13:59:43.490SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B699AD0C-4ED0-E011-A494-0026551193F880EEA4BB-6CFF-4C1E-9B68-C80A1AC45D8312B799AD0C-4ED0-E011-A494-0026551193F822079-09-14 04:58:23.967SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    A057CDE2-8571-E011-B2EC-0026551193F886BF8A46-5CE0-4A7F-978E-4A5E9B9A41A612A157CDE2-8571-E011-B2EC-0026551193F822079-05-16 14:08:38.190SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    285138DC-8471-E011-B2EC-0026551193F8F137BAD0-7BFE-42E4-960C-4A61510122F912295138DC-8471-E011-B2EC-0026551193F822079-05-16 14:01:17.413SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    C43C9C91-8471-E011-B2EC-0026551193F8B8A92E18-01A4-457F-8AE5-A758FEB8C9D812C53C9C91-8471-E011-B2EC-0026551193F822079-05-16 13:59:17.007SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    42E9B597-8471-E011-B2EC-0026551193F8E0D0FB37-FCF3-4AB7-A9D6-5ECD857459A91243E9B597-8471-E011-B2EC-0026551193F822079-05-16 13:59:24.990SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    77C66AE9-8471-E011-B2EC-0026551193F86784AB5A-564F-4BF4-8A5C-8049459B12F81278C66AE9-8471-E011-B2EC-0026551193F822079-05-16 14:01:41.803SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    015EE330-8571-E011-B2EC-0026551193F886DC6559-8B43-4CB5-933F-5EEDEA6B380D12025EE330-8571-E011-B2EC-0026551193F822079-05-16 14:03:41.103SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    16F917F5-8571-E011-B2EC-0026551193F8F9AD9F43-E23A-4519-A2A6-5EEE48DC2B111217F917F5-8571-E011-B2EC-0026551193F822079-05-16 14:09:07.657SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    98A48E4F-8571-E011-B2EC-0026551193F85C57D887-46B8-40BF-97F4-5EEF9EDB4C1A1299A48E4F-8571-E011-B2EC-0026551193F822079-05-16 14:04:32.310SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    C949AFE2-4DD0-E011-A494-0026551193F8C0B22C15-5105-4AEF-A44C-5F195A9A877512CA49AFE2-4DD0-E011-A494-0026551193F822079-09-14 04:57:05.043SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    98D34E49-8571-E011-B2EC-0026551193F80C031100-34AB-41E8-BF09-802D87C7638B1299D34E49-8571-E011-B2EC-0026551193F822079-05-16 14:04:26.840SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    77532CAB-8571-E011-B2EC-0026551193F859B96BF6-7F73-4879-8765-5F26C93692211278532CAB-8571-E011-B2EC-0026551193F822079-05-16 14:07:02.640SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    04FD0E45-8671-E011-B2EC-0026551193F83E209F4E-46D1-45CD-AC42-5F3D190164991205FD0E45-8671-E011-B2EC-0026551193F822079-05-16 14:11:28.350SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    6962A203-8571-E011-B2EC-0026551193F8BE6FD365-1F80-4FDE-BDF3-49E79D6D8897126A62A203-8571-E011-B2EC-0026551193F822079-05-16 14:02:24.493SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    495EE330-8571-E011-B2EC-0026551193F8AD145BD6-C3DA-4458-B955-5F56D0F25CDA124A5EE330-8571-E011-B2EC-0026551193F822079-05-16 14:03:44.950SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    EC5877CA-8571-E011-B2EC-0026551193F8226D1180-7BE6-4CA5-ABC9-C81011A123C512ED5877CA-8571-E011-B2EC-0026551193F822079-05-16 14:07:59.030SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    DCD27A95-8671-E011-B2EC-0026551193F867FD84F6-CE5D-478F-9D68-5F80DA80B7AF12DDD27A95-8671-E011-B2EC-0026551193F822079-05-16 14:13:34.897SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    F54AAFE2-4DD0-E011-A494-0026551193F8053B4813-6BC9-447E-95E8-5F81E68310AB12F64AAFE2-4DD0-E011-A494-0026551193F822079-09-14 04:57:11.217SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    5F8BADF4-4DD0-E011-A494-0026551193F8405AAAE2-C917-407B-A94F-C8162E716B9C12608BADF4-4DD0-E011-A494-0026551193F822079-09-14 04:57:41.437SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    FC17B1E8-4DD0-E011-A494-0026551193F8A0E1CC62-2D17-4892-80E6-49EFE38CF9ED12FD17B1E8-4DD0-E011-A494-0026551193F822079-09-14 04:57:20.233SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    F993AAFA-4DD0-E011-A494-0026551193F8E0DC83C8-89BD-47C9-9237-5FA4F1382CCC12FA93AAFA-4DD0-E011-A494-0026551193F822079-09-14 04:57:52.060SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    6E532CAB-8571-E011-B2EC-0026551193F85EFA6142-EDE5-468E-8926-5FAA5D9ADA95126F532CAB-8571-E011-B2EC-0026551193F822079-05-16 14:07:02.640SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    CA08049E-8471-E011-B2EC-0026551193F8CB9EEE4B-BD59-4C5F-9147-21B2BE4B558F12CB08049E-8471-E011-B2EC-0026551193F822079-05-16 13:59:36.367SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    BD22CECF-8471-E011-B2EC-0026551193F848A05560-4155-4FE0-A005-21BA81C0B73012BE22CECF-8471-E011-B2EC-0026551193F822079-05-16 14:00:53.867SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    2CD85DB1-8571-E011-B2EC-0026551193F8D5D59C6A-E4DE-4D1E-ABBD-49F5642F35DA122DD85DB1-8571-E011-B2EC-0026551193F822079-05-16 14:07:20.580SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    488FB006-4ED0-E011-A494-0026551193F8B58E95C6-3AB3-4850-95AA-49F8A794F71212498FB006-4ED0-E011-A494-0026551193F822079-09-14 04:58:09.043SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    46253CAA-8471-E011-B2EC-0026551193F8AA8203E2-08BC-41C8-9B1B-21D14C799FD71247253CAA-8471-E011-B2EC-0026551193F822079-05-16 13:59:52.040SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    615977CA-8571-E011-B2EC-0026551193F8A4F52F8E-E274-4A1E-8AC6-21D2684A876E12625977CA-8571-E011-B2EC-0026551193F822079-05-16 14:08:02.203SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    528CADF4-4DD0-E011-A494-0026551193F83F2F74C5-8D7D-4463-9A78-2209B51FF7B912538CADF4-4DD0-E011-A494-0026551193F822079-09-14 04:57:43.530SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    0C98AD0C-4ED0-E011-A494-0026551193F83206619D-1280-4C08-8A8E-220DFF51481C120D98AD0C-4ED0-E011-A494-0026551193F822079-09-14 04:58:20.357SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    213E9555-8571-E011-B2EC-0026551193F8CE88D808-4066-405B-9B8F-2212C3960AB012223E9555-8571-E011-B2EC-0026551193F822079-05-16 14:04:45.310SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    F08FB006-4ED0-E011-A494-0026551193F813DB57F1-4EBB-4219-A105-22285E7785B812F18FB006-4ED0-E011-A494-0026551193F822079-09-14 04:58:10.140SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    DB205D74-8571-E011-B2EC-0026551193F8364DF16F-6355-4B12-A787-223AF1FC75EC12DC205D74-8571-E011-B2EC-0026551193F822079-05-16 14:05:39.467SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B506917A-8571-E011-B2EC-0026551193F8F19EEFDA-BEB8-4D34-BF84-2240D9A053D412B606917A-8571-E011-B2EC-0026551193F822079-05-16 14:05:49.480SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    95A48E4F-8571-E011-B2EC-0026551193F8BD3407AE-2EE8-41F5-957B-2246B767F7A61296A48E4F-8571-E011-B2EC-0026551193F822079-05-16 14:04:32.310SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    05A48E4F-8571-E011-B2EC-0026551193F89B6991C9-C0FB-4920-A0E9-D8317112D6E01206A48E4F-8571-E011-B2EC-0026551193F822079-05-16 14:04:28.920SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    3427B412-4ED0-E011-A494-0026551193F8154753A7-3431-4FF0-A79F-D83637DF164E123527B412-4ED0-E011-A494-0026551193F822079-09-14 04:58:26.187SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    4E22AADC-8571-E011-B2EC-0026551193F880E9EA4F-2F4A-4DE2-8FA7-D84173E7763D124F22AADC-8571-E011-B2EC-0026551193F822079-05-16 14:08:28.657SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    AD90B006-4ED0-E011-A494-0026551193F8D69E162E-EEFE-48C9-B622-D851761CFF5E12AE90B006-4ED0-E011-A494-0026551193F822079-09-14 04:58:11.530SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    8A50F53E-8671-E011-B2EC-0026551193F8C482A1BA-0CEE-4905-B093-4A0495F0C73F128B50F53E-8671-E011-B2EC-0026551193F822079-05-16 14:11:14.270SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    25E42183-8671-E011-B2EC-0026551193F86FFDD006-3C03-4480-A60B-D85BC05EA5AE1226E42183-8671-E011-B2EC-0026551193F822079-05-16 14:13:11.693SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    2E7E3137-8571-E011-B2EC-0026551193F8CAA0892A-875C-48B2-B976-4A1FCF71FE99122F7E3137-8571-E011-B2EC-0026551193F822079-05-16 14:03:55.870SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    5588C49E-8571-E011-B2EC-0026551193F88E7DC485-39ED-48BD-BE93-D86E38D1A6F3125688C49E-8571-E011-B2EC-0026551193F822079-05-16 14:06:47.060SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    11CE06D6-8471-E011-B2EC-0026551193F8EAD05F05-327D-4BD5-B4BC-D8820879E4541212CE06D6-8471-E011-B2EC-0026551193F822079-05-16 14:01:10.163SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    BF12AED6-4DD0-E011-A494-0026551193F8EDE23B7B-29F6-46F0-9162-D88E8894448612C012AED6-4DD0-E011-A494-0026551193F822079-09-14 04:56:46.577SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    C911AD01-8671-E011-B2EC-0026551193F821085496-B68C-441F-A8E6-D88FD1AAADAD12CA11AD01-8671-E011-B2EC-0026551193F822079-05-16 14:09:28.457SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    4F4BAFE2-4DD0-E011-A494-0026551193F849CF8FEF-9776-4982-A6C1-D8960286B8FE12504BAFE2-4DD0-E011-A494-0026551193F822079-09-14 04:57:13.250SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    9A26F7C3-8571-E011-B2EC-0026551193F858CFF552-62E2-47AC-BBBE-D89A649EC792129B26F7C3-8571-E011-B2EC-0026551193F822079-05-16 14:07:44.423SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    96389E5B-8571-E011-B2EC-0026551193F8FC50311F-767D-466D-A04B-D8B831F5514F1297389E5B-8571-E011-B2EC-0026551193F822079-05-16 14:04:50.010SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    8206917A-8571-E011-B2EC-0026551193F87D92FAB3-5B62-40E0-978B-370A4F48CE1D128306917A-8571-E011-B2EC-0026551193F822079-05-16 14:05:48.200SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    8B4E482E-45A7-E011-BA30-0026551193F84D9A964C-E8EA-4C9E-B42F-374190728C77128C4E482E-45A7-E011-BA30-0026551193F822079-07-23 23:41:27.327SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    36480720-8671-E011-B2EC-0026551193F8EB91217C-2609-4790-AEF3-3749F0C2192E1237480720-8671-E011-B2EC-0026551193F822079-05-16 14:10:22.067SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    885138DC-8471-E011-B2EC-0026551193F81849A022-DF8C-40E2-BFAB-4A4A8476ED6312895138DC-8471-E011-B2EC-0026551193F822079-05-16 14:01:20.540SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B090B006-4ED0-E011-A494-0026551193F84B1B76CF-F4A2-4DFF-9032-4A5268C642FB12B190B006-4ED0-E011-A494-0026551193F822079-09-14 04:58:11.530SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    E687E8BC-8471-E011-B2EC-0026551193F8335645DC-4CC2-4F2D-AED4-37526E61918712E787E8BC-8471-E011-B2EC-0026551193F822079-05-16 14:00:31.447SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    1328B412-4ED0-E011-A494-0026551193F86055F8E7-E11B-4D98-8B0C-376F1587B58A121428B412-4ED0-E011-A494-0026551193F822079-09-14 04:58:27.653SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    E3158E80-8571-E011-B2EC-0026551193F8879F9B05-6041-4634-B4F2-21BB865AE6C912E4158E80-8571-E011-B2EC-0026551193F822079-05-16 14:05:55.983SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    EB11FF22-D774-E011-9D9C-0026551193F8029493BB-57CC-46DC-A126-378465A9C18D12EC11FF22-D774-E011-9D9C-0026551193F822079-05-20 19:27:48.597SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    ADDC89FB-8571-E011-B2EC-0026551193F8B38D5821-21CF-4D52-825D-379381FC1BA912AEDC89FB-8571-E011-B2EC-0026551193F822079-05-16 14:09:23.080SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    56F7CA61-8571-E011-B2EC-0026551193F8D8616018-8DAD-4352-83B1-21C3370D4D6B1257F7CA61-8571-E011-B2EC-0026551193F822079-05-16 14:05:01.247SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    4D5B09C3-8471-E011-B2EC-0026551193F8E4F75C09-8DE2-474F-B09E-37AA00A28E16124E5B09C3-8471-E011-B2EC-0026551193F822079-05-16 14:00:40.913SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    C13D9555-8571-E011-B2EC-0026551193F8156D1512-22F3-4D55-8682-37B97C51CE3B12C23D9555-8571-E011-B2EC-0026551193F822079-05-16 14:04:43.230SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B918B1E8-4DD0-E011-A494-0026551193F883479C7E-552B-45DE-B728-37BFA38C8E5A12BA18B1E8-4DD0-E011-A494-0026551193F822079-09-14 04:57:22.983SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    2BB21614-8671-E011-B2EC-0026551193F8FDBB49C3-7161-46E5-987A-9F23E417B739122CB21614-8671-E011-B2EC-0026551193F822079-05-16 14:10:00.910SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    D18BADF4-4DD0-E011-A494-0026551193F8BE3707C9-A2A9-4118-A3B4-9F25CB426FE812D28BADF4-4DD0-E011-A494-0026551193F822079-09-14 04:57:42.607SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    9E18B1E8-4DD0-E011-A494-0026551193F87B93A4CB-74C9-4CCD-80E0-9F42E3584CF7129F18B1E8-4DD0-E011-A494-0026551193F822079-09-14 04:57:22.640SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    CF26F7EE-8571-E011-B2EC-0026551193F82C045CEA-5311-4FBF-85E3-4A58DCC1A03C12D026F7EE-8571-E011-B2EC-0026551193F822079-05-16 14:09:00.737SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    23D85DB1-8571-E011-B2EC-0026551193F8E061725E-6F77-4641-B25B-9F5607BA818F1224D85DB1-8571-E011-B2EC-0026551193F822079-05-16 14:07:20.580SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    691EAEEE-4DD0-E011-A494-0026551193F83C775AC8-17B6-492F-9547-9F585F6C8BE2126A1EAEEE-4DD0-E011-A494-0026551193F822079-09-14 04:57:24.187SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    89532CAB-8571-E011-B2EC-0026551193F886512FFC-147C-45A2-8B92-9F65B653B44F128A532CAB-8571-E011-B2EC-0026551193F822079-05-16 14:07:03.437SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    0F91AAFA-4DD0-E011-A494-0026551193F8A4DE1573-53B1-4CD1-B587-9F68160A817D121091AAFA-4DD0-E011-A494-0026551193F822079-09-14 04:57:44.653SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    B313FF22-D774-E011-9D9C-0026551193F82CCCBB7C-D98E-40F7-9D29-9F6B9B03203812B413FF22-D774-E011-9D9C-0026551193F822079-05-20 19:27:54.080SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

    4A23CECF-8471-E011-B2EC-0026551193F8F8C72349-52C9-438B-B033-9F855CCAFB0B124B23CECF-8471-E011-B2EC-0026551193F822079-05-16 14:01:03.367SOSTARTED_OUTBOUNDSQL/Notifications/ProcessWMIEventProviderNotification/v1.074E66820-0D0F-49E4-9161-F151DC2F22424-100000000-0000-0000-0000-00000000000000000000-0000-0000-0000-0000000000001900-01-01 00:00:00.0001900-01-01 00:00:00.00000x000000000000-1000-1001

  • 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