Comments
Sort by recent activity
Hi kherrmann , The query shown is the SQL Database Sampler which runs every 15 seconds. Based on https://www.sqlskills.com/help/waits/preemptive_os_lookupaccountsid/ it looks like the wait is likely occurring due to the SUSER_SNAME(db.owner_sid) [owner] which is associated with the PREEMPTIVE_OS_LOOKUPACCOUNTSID wait. It seems this can be related to performance issues with the DC's or potentially round trip time to the servers. Kind regards, Alex / comments
Official comment
Hi kherrmann ,The query shown is the SQL Database Sampler which runs every 15 seconds. Based on https://www.sqlskills.com/help/waits/preemptive_os_lookupaccountsid/ it looks like the wait is likely...
Hi Al, Great to hear, glad that's sorted it for you! Kind regards, Alex / comments
Hi Al,Great to hear, glad that's sorted it for you! Kind regards,Alex
Hi Al, You are most welcome! There are three that are normally in tempdb: one for Top Queries, one for query wait stats, and one for sproc stats (related to the Top procedures). If you look at the tables in tempdb > tables, you should see the a and b tables dbo.redgate_sqlmonitor_topqueries_<a|b>_xxxxxx, dbo.redgate_sqlmonitor_SprocStats_<a|b>_xxxxxx but you will no longer see the dbo.##redgate_sqlmonitor_querywaitstats_<a|b>_xxxxxx tables in the tempdb > Temporary Tables section. And in the product, if you go to the Top queries section, expand one of the entries and then scroll down to the table that has “Wait type” as the first column header, you should not see any data there for any of the queries. Kind regards, Alex / comments
Hi Al,You are most welcome!There are three that are normally in tempdb: one for Top Queries, one for query wait stats, and one for sproc stats (related to the Top procedures).If you look at the tab...