Viewing 15 posts - 1 through 15 (of 19 total)
Within the Configuration are both servers possible owners of the resources within the SQL Resource Group? Also are there any errors being reported within the windows event logs that indicate...
November 20, 2012 at 9:58 am
You shall need additional Disk resources for each of your new instances Log, data, tempdb.
You shall also require additional IP addresses both Private and Public, as well as ensuring there...
November 20, 2012 at 6:00 am
You also need to understand what is using tempdb. Shrinking the file may sort the problem sort term but does not mean this shall not happen again
SELECT TOP 10 session_id,...
November 20, 2012 at 4:39 am
If you are trying to run a shrink on the tempdb you must be in single user mode and ensure no other activity is occurring in the tempdb database. If...
November 20, 2012 at 4:31 am
you need to look in sys.dm_os_memory_clerks using a query such as
SELECT SUM(multi_pages_kb)
FROM sys.dm_os_memory_clerks
November 15, 2012 at 2:19 am
The sizeMB is for the size of the data file
November 14, 2012 at 8:48 am
The following from a post on SQLSkills will help you find the size of the plan cache
SELECT objtype AS [CacheType]
, count_big(*) AS...
November 14, 2012 at 5:49 am
Have a look at this article http://www.sqlservercentral.com/articles/Memory/74867/
The MPA resides in the windows system cache
November 14, 2012 at 5:32 am
For a starter in relation to DB_Name, Create date and size the following will work. This looks only at the 1st data file and ignores the log files but can...
November 14, 2012 at 5:11 am
What you need to ensure is that you have a suitable back-up policy in place.
If the Database is in Full recovery then you need to ensure that you run regular...
November 13, 2012 at 7:26 am
Best Practice for a Production Environment suggests a value of 1. Just remember that if you change the Max DOP to 8 for maintenance then the plan cache shall be...
November 13, 2012 at 7:02 am
This is also the Same for SQL Server 2012
November 13, 2012 at 4:20 am
In a SQL server 2008/2008 R2 clustered environment it is not possible to add and remove features.
Please look at http://support.microsoft.com/kb/2547273
November 13, 2012 at 2:45 am
This is handled by the LazyWriter process by using a clock algorithm to sweep thru the buffer pool. This then frees up and clean buffer to make sure there is...
November 9, 2012 at 8:26 am
November 8, 2012 at 7:24 am
Viewing 15 posts - 1 through 15 (of 19 total)