Viewing 15 posts - 1 through 15 (of 71 total)
from
avg_cpu_time - Average CPU time for the query plan within the aggregation interval (reported in microseconds).
Does avg_cpu_time count only CPU time without counting any wait time for blocking...
November 14, 2020 at 4:42 pm
consider adapting "sp_whoisactive" as reporting tool
but read licence agreement first 🙂 http://whoisactive.com/docs/03_license/
March 29, 2020 at 2:40 am
Pro SQL Server on Linux
Advanced Data Analytics Using Python
XML and JSON Recipes for SQL Server
Learn Data Analysis with Python
Beginning DAX with Power BI
Azure and Xamarin Forms
Practical Web Scraping for Data...
February 28, 2020 at 5:43 pm
Thanks everybody for help.
I was assigned to project to check why Batch processing takes 100% of CPU
Using query store I found that during batch processing job it calls from 50 ...
January 27, 2020 at 4:13 pm
Perfect script !
Thanks a lot
January 15, 2020 at 6:14 pm
Thanks everybody
I posted same question on MSDN forum and got answer from MS team
in short... look into sys.dm_os_job_object column process_memory_limit_mb
bellow link to original post and answer from MS
January 13, 2020 at 4:51 pm
Hi, thank a lot for all suggestions,
close connection/work with dev team is good ,but I am adapting to reality 🙂
Project is running in SQL azure ,I posted topic in 2016...
December 4, 2019 at 3:23 pm
Thanks a lot for suggestions
Role and permission of dba in this project allow to use Query store (no extended events)
Dba might suggest and if needed create new indexes (preferably providing...
December 3, 2019 at 9:56 pm
Query store capture long running query for last 1 hr period in following format
(@P1 bigint, @P2 bigint, @P3 bigint, ...@P120 )select Order_Id from Orders where item_Id in (@P1, @P2, @P3...
December 2, 2019 at 10:13 pm
Hi,
I should clarify it ,
1. usage of extended events , triggers ,e t.c is not options. I can use only Azure portal and Query store(any changes to configuration of query...
November 15, 2019 at 5:10 pm
Thanks a lot Jeff
I modified query to provide me overview of DTA statistic and indexes I want/plan to drop
SELECT
DB_NAME() as 'database name',
sc.name as 'schema',
so.name as 'table',
isnull(si.name,'*ORPHAN STAT*') as 'index name',
(
SELECT
USER_SEEKS+...
September 20, 2019 at 9:01 pm
"Speak to your Exchange admin and ask them to allow external e-mails to be sent from Server2."
So External email could be restricted to particular IP?
December 7, 2018 at 8:19 am
November 16, 2018 at 12:23 pm
November 16, 2018 at 11:54 am
Hi Steve,
thanks for the tip "ARM templates", I used portal to add resources
it takes some time get used to ARM templates ,but I see that it will speed up...
November 16, 2018 at 8:24 am
Viewing 15 posts - 1 through 15 (of 71 total)