Viewing 15 posts - 1 through 15 (of 28 total)
Then it is for sure to do with your IO sub system.
For larger DBs and Slow DISKs this might be expected. Because I personally had an experince of shrinking...
April 2, 2014 at 6:03 pm
What is the WAIT_TYPE for that process?
use sys.dm_exec_requests DMV for that session and look at the wait_type column
Regards,
Nawaz.
April 2, 2014 at 5:46 pm
Thank you David,
There is another article here:
http://technet.microsoft.com/en-us/library/ms181055(v=sql.105).aspx
You are pointing me to the same article that I did in my previous posts.
What has prompted the question, are you...
March 26, 2014 at 10:32 am
Hi David,
Thanks for the reply. I am aware of the fact that any DDL changes to the underlaying tables, or modifications to the SP itself causes the SP plan to...
March 25, 2014 at 4:00 pm
Hello,
Can anybody help me with this?
Regards,
Nawaz.
March 25, 2014 at 11:10 am
Hello,
By default SQL Server is designed to use memory in large quantities, in order to cache data pages, plans and other DB objects in the Memory (Buffer pool).Under noramal conditions...
March 24, 2014 at 3:01 pm
CREATE INDEX IX_1
ON 123 (A)
INCLUDE (B,C,D,E,F,G,H)
Having one Index as quoted above will make much sense.
February 25, 2014 at 4:55 pm
Hi All,
The issue has been solved. I am extremely sorry for all the confusion I caused. There was a bug in my script that caused it go in a infinite...
February 18, 2014 at 9:13 pm
How is your memory looking on that server?
Do you have any signs of some memory pressure?
I have run below 2 queries for looking at the memeory details.
SELECT
((SI.physical_memory_in_bytes/1024.0)/1024.0)/1024.0 AS PhysicalMemoryInstalled
FROM
sys.dm_os_sys_info...
February 18, 2014 at 4:10 pm
Can you provid us the details on if the service pack resolved your issue.
Regards,
Nawaz.
August 2, 2013 at 4:18 pm
SQLSACT (7/17/2013)
dedicatedtosql (7/17/2013)
July 17, 2013 at 3:22 pm
Thank you all for answering my questions.
TheSQLGuru (7/17/2013)
dedicatedtosql (7/17/2013)
July 17, 2013 at 3:17 pm
Thank you very much for the reply. So all the memory that SQL Server process is taking up is called the Buffer Pool. In other words when we configure Max...
July 17, 2013 at 10:07 am
Hello Tim,
Outstanding Book. Actually your book has shaped me into being better DBA. The more I read the better I am becoming at trouble shooting the DBs in my environment.
I...
July 16, 2013 at 5:40 pm
Excellent article. The best part was the demo. I think in 2012 the actual execution plan it self shows tempDB spills with a warning sign on the SELECT operator.
I...
July 16, 2013 at 12:23 pm
Viewing 15 posts - 1 through 15 (of 28 total)