Viewing 15 posts - 766 through 780 (of 1,365 total)
What is a high Page Splits/sec? There is no simple answer, as it somewhat depends on your system's I/O subsystem. But if you are having disk I/O performance problems on...
January 9, 2009 at 12:17 pm
Check the below mentioned link
MJ
January 9, 2009 at 11:26 am
Did you run "Run DBCC CHECKTABLE on sysobjects" with all_errormsgs,no_infomsgs?
MJ
January 9, 2009 at 8:23 am
Its useful and safe if you test it in separate test environment before you attack production. Don't ever forget to take system and user databases backup prior to SP installation.
MJ
January 9, 2009 at 8:21 am
Once password is changed in AD just use SQL Server configuration manager and change the passwords there.
MJ
January 9, 2009 at 5:50 am
Check BOL for bcp(make use of queryout parameter).
MJ
January 8, 2009 at 5:53 pm
January 8, 2009 at 5:51 pm
First:
DECLARE @account varchar(100)
EXECUTE master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',
N'ObjectName',
@account OUTPUT,
N'no_output'
SELECT @account as SQLServer_ServiceAccount
Second:
declare @reg_srv varchar(256),
@reg_agent varchar(256)
if serverproperty('instancename') is null
...
January 8, 2009 at 5:42 pm
Better to leave it ON.
MJ
January 8, 2009 at 3:30 pm
What do you see(path) under error log file path when you right click SQL Server Agent in SSMS?
MJ
January 8, 2009 at 3:21 pm
January 7, 2009 at 7:04 pm
Detecting the framework versions installed is even easier than reading the registry: It's in the file system. Check for the existence of those directories:
.NET 1.0: %windir%\Microsoft.NET\Framework\v1.0.3705
.NET 1.1: %windir%\Microsoft.NET\Framework\v1.1.4322
.NET...
January 7, 2009 at 6:46 pm
What do you see under
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoftet framework setupdp
MJ
January 7, 2009 at 4:21 pm
Please try starting sql server from command prmopt and see what message it pops up.
To start the default instance of SQL Server
From a command prompt, enter one of...
January 7, 2009 at 4:06 pm
Viewing 15 posts - 766 through 780 (of 1,365 total)