SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 
        
Home       Members    Calendar    Who's On


««123»»

DAC issue Expand / Collapse
Author
Message
Posted Saturday, July 04, 2009 1:59 AM


SSCarpal Tunnel

SSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal Tunnel

Group: General Forum Members
Last Login: Yesterday @ 4:47 AM
Points: 4,752, Visits: 3,529
With clustering stuff, many thing must be managed using cluster administrator!

What are you looking for ? (With regards to instance management)


Don't drive faster than your guardian angel can fly ...
but keeping both feet on the ground won't get you anywhere

Very usefull HowTo for forums:
- How to post Performance Problems
- How to post data/code to get the best help
Post #747172
Posted Saturday, July 04, 2009 6:13 AM
Old Hand

Old HandOld HandOld HandOld HandOld HandOld HandOld HandOld Hand

Group: General Forum Members
Last Login: Tuesday, October 27, 2009 10:33 PM
Points: 330, Visits: 444
ALZDBA (7/4/2009)
With clustering stuff, many thing must be managed using cluster administrator!

What are you looking for ? (With regards to instance management)



i want enable the DAC remote acces from SAC
Post #747195
Posted Sunday, July 05, 2009 3:04 AM


SSCarpal Tunnel

SSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal Tunnel

Group: General Forum Members
Last Login: Yesterday @ 4:47 AM
Points: 4,752, Visits: 3,529
did you try this in SSMS:

EXEC sp_configure 'remote admin connections', 1;
GO
RECONFIGURE;
GO


Don't drive faster than your guardian angel can fly ...
but keeping both feet on the ground won't get you anywhere

Very usefull HowTo for forums:
- How to post Performance Problems
- How to post data/code to get the best help
Post #747318
Posted Sunday, July 05, 2009 3:24 AM
Old Hand

Old HandOld HandOld HandOld HandOld HandOld HandOld HandOld Hand

Group: General Forum Members
Last Login: Tuesday, October 27, 2009 10:33 PM
Points: 330, Visits: 444
ALZDBA (7/5/2009)
did you try this in SSMS:

EXEC sp_configure 'remote admin connections', 1;
GO
RECONFIGURE;
GO


Yes .. i have enabled that by executiing that query already ..but issue is i could not able to modify the anything by using the sac wizard in sql server clustering setup.
Post #747322
Posted Sunday, July 05, 2009 11:49 PM


SSCarpal Tunnel

SSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal Tunnel

Group: General Forum Members
Last Login: Yesterday @ 4:47 AM
Points: 4,752, Visits: 3,529
Did you change the SAC connection from localhost to the logical server name of your sqlserver instance ?

e.g. mysqlserver\myinstance you should connect to mysqlserver.


Don't drive faster than your guardian angel can fly ...
but keeping both feet on the ground won't get you anywhere

Very usefull HowTo for forums:
- How to post Performance Problems
- How to post data/code to get the best help
Post #747514
Posted Monday, July 06, 2009 2:02 AM
Old Hand

Old HandOld HandOld HandOld HandOld HandOld HandOld HandOld Hand

Group: General Forum Members
Last Login: Tuesday, October 27, 2009 10:33 PM
Points: 330, Visits: 444
ALZDBA (7/5/2009)
Did you change the SAC connection from localhost to the logical server name of your sqlserver instance ?

e.g. mysqlserver\myinstance you should connect to mysqlserver.


Yes ...After that only its allowing me to open the SAC wizard but while doing the some modification like enable or disable the dac remote access on the wizard its giving the error message .
Post #747551
Posted Monday, July 06, 2009 2:54 AM


SSCarpal Tunnel

SSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal Tunnel

Group: General Forum Members
Last Login: Yesterday @ 4:47 AM
Points: 4,752, Visits: 3,529
What service pack is your sqlinstance on ?

Select Serverproperty( 'ComputerNamePhysicalNetBIOS' ) as ComputerNamePhysicalNetBIOS 
, Serverproperty( 'Edition' ) as Edition
, Serverproperty( 'InstanceName' ) as InstanceName
, Serverproperty( 'IsClustered' ) as IsClustered
, Serverproperty( 'MachineName' ) as MachineName
, Serverproperty( 'ProductVersion' ) as ProductVersion
, Serverproperty( 'ProductLevel' ) as ProductLevel
, Serverproperty( 'ResourceLastUpdateDateTime' ) as ResourceLastUpdateDateTime
, Serverproperty( 'ResourceVersion' ) as ResourceVersion
, Serverproperty( 'ServerName' ) as ServerName
, USER_ID() AS [USER_ID]
, USER_NAME() AS [USER_NAME]
, SUSER_ID() AS [SUSER_ID]
, SUSER_SNAME() AS [SUSER_SNAME]
, IS_SRVROLEMEMBER ('sysadmin') AS [Is_ServerAdmin_Sysadmin]
, ORIGINAL_LOGIN() AS [ORIGINAL_LOGIN]



Don't drive faster than your guardian angel can fly ...
but keeping both feet on the ground won't get you anywhere

Very usefull HowTo for forums:
- How to post Performance Problems
- How to post data/code to get the best help
Post #747570
Posted Monday, July 06, 2009 4:16 AM
Old Hand

Old HandOld HandOld HandOld HandOld HandOld HandOld HandOld Hand

Group: General Forum Members
Last Login: Tuesday, October 27, 2009 10:33 PM
Points: 330, Visits: 444
ALZDBA (7/6/2009)
What service pack is your sqlinstance on ?

Select Serverproperty( 'ComputerNamePhysicalNetBIOS' ) as ComputerNamePhysicalNetBIOS 
, Serverproperty( 'Edition' ) as Edition
, Serverproperty( 'InstanceName' ) as InstanceName
, Serverproperty( 'IsClustered' ) as IsClustered
, Serverproperty( 'MachineName' ) as MachineName
, Serverproperty( 'ProductVersion' ) as ProductVersion
, Serverproperty( 'ProductLevel' ) as ProductLevel
, Serverproperty( 'ResourceLastUpdateDateTime' ) as ResourceLastUpdateDateTime
, Serverproperty( 'ResourceVersion' ) as ResourceVersion
, Serverproperty( 'ServerName' ) as ServerName
, USER_ID() AS [USER_ID]
, USER_NAME() AS [USER_NAME]
, SUSER_ID() AS [SUSER_ID]
, SUSER_SNAME() AS [SUSER_SNAME]
, IS_SRVROLEMEMBER ('sysadmin') AS [Is_ServerAdmin_Sysadmin]
, ORIGINAL_LOGIN() AS [ORIGINAL_LOGIN]




i have not applied any service pack after installing sql server 2005 cluster standard edition ....
Post #747591
Posted Monday, July 06, 2009 4:42 AM


SSCarpal Tunnel

SSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal TunnelSSCarpal Tunnel

Group: General Forum Members
Last Login: Yesterday @ 4:47 AM
Points: 4,752, Visits: 3,529
Oh, you should !
Why ?
- bugs have been cleaned up
- new features have been added (SSB, logon triggers,..)
- performance optimisations
- SSMS menu items have been shifted around (SP2)

The current is SP3 and they did release some cumulative updates for that too.

http://support.microsoft.com/kb/913089


Don't drive faster than your guardian angel can fly ...
but keeping both feet on the ground won't get you anywhere

Very usefull HowTo for forums:
- How to post Performance Problems
- How to post data/code to get the best help
Post #747603
Posted Monday, July 06, 2009 6:34 AM
Old Hand

Old HandOld HandOld HandOld HandOld HandOld HandOld HandOld Hand

Group: General Forum Members
Last Login: Tuesday, October 27, 2009 10:33 PM
Points: 330, Visits: 444
ALZDBA (7/6/2009)
Oh, you should !
Why ?
- bugs have been cleaned up
- new features have been added (SSB, logon triggers,..)
- performance optimisations
- SSMS menu items have been shifted around (SP2)

The current is SP3 and they did release some cumulative updates for that too.

http://support.microsoft.com/kb/913089


ya ..i should apply the service pack soon...i have to apply the service pack in sql server clustering environment ..could you explain me what are rules & steps should i follow at the time of service pack apply in cluster environment ?

are u sure that this problem will be resolved after applying this sp3 ?

Post #747657
« Prev Topic | Next Topic »

««123»»

Permissions Expand / Collapse