Viewing 15 posts - 31 through 45 (of 2,386 total)
The average disk queue length shoud not be more than 6 in your case.
May 16, 2005 at 5:24 am
Before issuing kill command, you have to verify whether the spid is active or inactive,
you can check it by running dbcc inputbuffer that will return a rowset if the spid...
May 16, 2005 at 5:20 am
Sounds like "BUILIN\Administrators" was removed from SQL Server logins.
You have to either add it back or grant 'NT AUTHORITY\SYSTEM' to acces SQL Server with 'sa' privilege.
May 16, 2005 at 5:14 am
Agreed to Mike. We use LiteSpeed 2005 in DEV/QA/Test systems and the backup performance and compression are excellent. IMCEDA, now is QUEST software claims Microsoft and other large customers are...
May 13, 2005 at 7:10 am
Since you have big money, I suggest to get SAN storage for your system. EMC, HP and IBM are the major players. You can get it from DELL too.
May 12, 2005 at 4:13 pm
if substring(convert(varchar(20), getdate(), 120), 12, 2) < 14
@due_date = getdate()
else
@due_date = dateadd(dd, 1, getdate()
May 12, 2005 at 4:10 pm
Even tought you have alreay checked the logs, I would suggest you go through hardware check completely.
May 12, 2005 at 4:04 pm
Do you want to monitor SQL Server failover?
May 12, 2005 at 7:48 am
Instead of using the mapping, you can use UNC path like \\servername\sharename\..... in your xp commands.
May 11, 2005 at 11:51 am
Mike,
Here there are.
http://support.microsoft.com/default.aspx?scid=kb;en-us;274750
http://support.microsoft.com/default.aspx?scid=kb;en-us;811891
May 11, 2005 at 9:59 am
Some of queries do not work well when they run in parallel. Another option is to add query hint (option(MAXDOP 1) to force the query to run without parallel execution....
May 11, 2005 at 8:31 am
Your SQL server is configured to use multiple processor to handle to queries, Turn it off from EM --> Processor --> Parallelism --> Use one processor.
May 11, 2005 at 8:15 am
Viewing 15 posts - 31 through 45 (of 2,386 total)