Viewing 15 posts - 646 through 660 (of 1,536 total)
By the looks of things you have not set a cap on the amount of memory that SQL Server can take. Given this you could run severely short on resources,...
December 16, 2008 at 5:36 am
Try adding the IP address as one of the objects SQL Server is dependent upon
December 16, 2008 at 5:12 am
You have me there sir.
I think that there are potential improvements for all RAID levels, and we have to choose a RAID level that is right for us.
December 15, 2008 at 12:09 pm
That'd would be great. Anything from the cluster log.
In the meantime, are there entries in the event logs as regards the problem? Also check the SQL Server Error Logs.
December 15, 2008 at 10:56 am
Steve Jones put together this awesome list of SQL Server version numbers and what they relate to, something I keep as a favourite, and refer back to pretty frequently.
http://www.sqlservercentral.com/articles/Administration/2960/%5B/url%5D
December 15, 2008 at 10:20 am
Has one of the servers that you are monitoring been upgraded at all?
December 15, 2008 at 9:42 am
Matt Miller (12/15/2008)
PaulB (12/15/2008)
Nicholas Cain (12/15/2008)
It's also excellent for getting rid of bugsYou made my day! 😀
So - remind me again -
What bugs does RAID 10 kill that...
December 15, 2008 at 9:40 am
You could salvage this by creating the group and adding the items and dependencies back manually, make sure that you have all the information that you built the cluster with...
December 15, 2008 at 8:37 am
Is there a possibility of fixed disk on those nodes causing a problem?
Are all the machines configured exactly the same? And do the disk numbers match up correctly?
Could you post...
December 15, 2008 at 8:27 am
It's also excellent for getting rid of bugs
December 15, 2008 at 7:24 am
Books Online is a wonderful resource for this kind of thing. You can access this via the SQL Server Management Studio.
You can press F1 for regular help
Ctrl + F1 for...
December 15, 2008 at 7:22 am
Books Online is a wonderful resource for this kind of thing. You can access this via the SQL Server Management Studio.
You can press F1 for regular help
Ctrl + F1 for...
December 15, 2008 at 7:22 am
Like I said simple convert 😀
December 14, 2008 at 12:00 pm
Going on the assumption that the information is standardized in format and will not change
CREATE function dbo.udfGetRealDate (@vardate varchar(50))
RETURNS datetime
AS
BEGIN
declare @datedata datetime
declare @data varchar(25)
select @data = LEFT(@vardate, 2) + '/'...
December 14, 2008 at 10:52 am
Viewing 15 posts - 646 through 660 (of 1,536 total)