Viewing 15 posts - 1,306 through 1,320 (of 2,387 total)
See solution from http://support.microsoft.com/default.aspx?scid=kb;en-us;322140
August 14, 2003 at 9:40 am
From BOL.
"Permissions
TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and are not transferable."
August 14, 2003 at 9:15 am
No aware of that but definately don't use to stop/start clustered virtual SQL Server.
August 14, 2003 at 9:11 am
Use performance monitor or select from sysperfinfo for accurate memory usage.
August 14, 2003 at 9:08 am
It is cluster aware. You have to install it for each instances. Make sure you have sp3 or sp3a installed prior applying it.
Edited by - allen_cui on 08/13/2003 1:49:36...
August 13, 2003 at 1:49 pm
See solution from http://support.microsoft.com/default.aspx?scid=kb;en-us;154628
August 13, 2003 at 11:47 am
Any error messages in application/system logs? Do you removed BUILTIN\Administrators login from SQL Server? Is the account which is used for setuping windows 2000 cluster be granted to access SQL...
August 13, 2003 at 11:44 am
Quoted from BOL.
"Error 1204
Severity Level 19
Message Text
The SQL Server cannot obtain a LOCK resource at this time. Rerun your statement when there are fewer active users or ask the system...
August 13, 2003 at 11:38 am
How large are your databases in size? As Larry said, SQL Server will allocate the memory when it needs. You may wait to go back to check the usage after...
August 13, 2003 at 11:35 am
set nocount on
create table ##cluster(outputinfo varchar(255))
insert into ##cluster
exec xp_cmdshell 'cluster /cluster:w2kclus1 group'
select * from ##cluster where outputinfo like '%yoursqlservergroupname%'
drop table ##cluster
August 13, 2003 at 11:32 am
Can you ping the server? Try to access with IP address.
August 13, 2003 at 11:26 am
You have to enable 'AWE' in SQL Server to use memoery that is beyond 4GB.
August 13, 2003 at 9:45 am
Viewing 15 posts - 1,306 through 1,320 (of 2,387 total)