Viewing 15 posts - 151 through 165 (of 648 total)
Hi, Thanks for sharing script for finding top CPU queries.
select
servername,runtime,max(DBName) as DBName,max(QueryExecuted) as QueryExecuted,(sum(total_worker_time)/sum(execution_count))/@ConvertMiliSeconds as AvgCPUTime
,sum(execution_count) as execution_count,query_hash, max(ObjectName) as ObjectName
into ##FindTopCPUQueries_set2
from ##FindTopCPUQueries_set1
group by query_hash,servername,runtime
order by AvgCPUTime desc
could you...
June 24, 2014 at 11:34 pm
Thanks for sharing this script..
Email does not coming if database file auto gowth disabled and pre-sized already..
Is it correct?
May 14, 2014 at 5:41 am
Thanks Mr. Perrry.
In My case, I have to configure all user database MDF, LDF, NDF file and tempdb will placed to RAID 5 in single logical drive in "E" drive.
Thanks
ananda.
May 13, 2014 at 6:34 am
but where is the PLE output like 300 sec..
May 12, 2014 at 11:11 pm
Thank you Mr. Perry..
As per current configuration in physical server as below
Logical view at HP array configuration tools
1.SAS Array A â 1 Logical drive(s) - RAID 1 (Mirroring)
Total...
May 12, 2014 at 11:06 pm
Could you explain the output result about your script? I got result as below
Average Page Life Expectancy
16:16:32:000
Thanks
ananda
May 12, 2014 at 10:09 pm
One Final question..
If stop that SQL VSS SQLwrite service, does it help to avoid SQL files backup at windows image backup when running?
Note: currently that service is ruuning.
May 12, 2014 at 5:15 am
Thank you Mr.Grant for your valuable reply..
I will asking to server team to execule the SQL file location path at windows image backups.
May 12, 2014 at 5:02 am
Ok..I have downloded that H/W books. Chapter 2: The Storage Subsystem. Now i am reading that books..
Thanks Mr. Glenn Berry for free pdf edition.
May 12, 2014 at 4:57 am
Built-in windows image backup, they configured Drives "C" and "D" for backups.
also database MDF & LDF files were placed to drive " D" .
whenever starting system image backup also taking...
May 12, 2014 at 4:02 am
Version:
OS: Windows 2008 Enterprise Edition with SP1
DB: MS SQL Server 2008 Enterprise edition with SP3..
I searched those issues happened in SQL 2000 and 2005, so can any one could this...
May 12, 2014 at 3:48 am
Thank you for reply..
I will convinced to vendor about put on MDF, LDF file on different logical partition in single Physical array controller. Also not getting IO performance for...
May 11, 2014 at 11:20 pm
Ok.. I will changed to another Separate partition âFâ - Tempdb Data and log files.
Pls. suggest. what about other files placement? is it really get performance on different logical...
May 10, 2014 at 5:00 am
Verified that all CLR stored procedure coding and they mention as below but access permission is unsafe.
CREATE PROCEDURE [dbo].[CreateCFS]
@uri-2 [nvarchar](255)
WITH EXECUTE AS CALLER
AS
EXTERNAL NAME [CFSserver].[StoredProcedures].[CreateCFS]
GO
May 2, 2014 at 11:12 pm
Performance vloume task, it has been done at initial setup when database was upgrade to 2008 R2 from 2000.
April 11, 2014 at 2:45 am
Viewing 15 posts - 151 through 165 (of 648 total)