Verify Communication Between Two or More Computers
When a transactional COM component on one system accesses a SQL Server...
Viewing 15 posts - 16 through 30 (of 2,386 total)
Verify if SQL Server service account has 'sysadmin' right in SQL Serevr logins.
May 18, 2005 at 2:28 pm
What is your SQL Server current version number? Check it from regsvr32.
May 18, 2005 at 2:25 pm
Run RESTORE FILELISTONLY to get a list of the databases files and file numbers contained in the backup set.
Then Run Restore command with FILE = file_numbes
May 18, 2005 at 2:21 pm
Only members of the sysadmin and dbcreator fixed server roles can execute sp_attach_db and sysadmin to run sp_detach_db.
db_backupoperator can run backup and dbcreator is able to execute restore.
I suggest you to control how...
May 18, 2005 at 12:30 pm
Since you mentioned DTCtest was failed, You may try this.
May 18, 2005 at 12:18 pm
Try to grant it to access SQL Server with 'sa' right by running sp_grantlogin 'NT AUTHORITY\NetworkService' and sp_addsrvrolemember.
May 18, 2005 at 10:24 am
Do you have same issue between two Windows 2000 or 2003 servers?
Did you remove "BUILTIN\Administrators" group from both servers? Try to add it back to see what is going to...
May 18, 2005 at 9:57 am
You could create server alias name to like be a defualt instance for your named instance using client network utility.
In terms of memorty configuration, it really depends on how much...
May 18, 2005 at 9:32 am
For OLTP system, We always suggest not to use parallel execution, in this way, server will has more available CPU resources to serve many concurrent transactions requests.
By select * from sysprocesses,...
May 18, 2005 at 9:20 am
In order to see your MDB file in remote server from SQL Server, you have to use domain user account to run SQL Server service and that domain user account...
May 18, 2005 at 8:06 am
Remove rights from a login is nothing to do with stoping users to use EM.
You can delete following MMC from user's machine C:\WINNT\system32\mmc.exe /s "C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC"...
May 18, 2005 at 7:53 am
First, you have to find out which queries are running slow and parallel in those SPs that are used by monthly DB-process.
You can then add query hint "maxdop number" in...
May 18, 2005 at 7:45 am
What type of account does your SQL Server run, domain user or local system account?
May 18, 2005 at 7:34 am
There is because old SQL Server Agent sessions were still running after you removed the 'BUILTIN\Administrators" group.
May 16, 2005 at 6:39 am
Viewing 15 posts - 16 through 30 (of 2,386 total)