July 3, 2009 at 9:38 am
Hello
I have a Sql 2000 and I'd like to migrate to sql 2005. The problem I have it's that on the Sql 2000 I have the password of SA less than 8 characters, is it possible to maintain the same password on SQL 2005?
Thanks
October 1, 2009 at 7:32 pm
If a program requires a login with the SYSADMIN role and rights to Master, will a login with the SYSADMIN role have rights to MASTER by default or does that have to be granted?
KU
October 2, 2009 at 2:11 pm
pclemares (7/3/2009)
HelloI have a Sql 2000 and I'd like to migrate to sql 2005. The problem I have it's that on the Sql 2000 I have the password of SA less than 8 characters, is it possible to maintain the same password on SQL 2005?
Thanks
Yes, when you go to modify the sa account, toggle Password Policy Enforcement off. However, from a security perspective, you need to see about getting that SA account password to at least 8 characters.
K. Brian Kelley
@kbriankelley
October 2, 2009 at 2:12 pm
SequelDBA (10/1/2009)
If a program requires a login with the SYSADMIN role and rights to Master, will a login with the SYSADMIN role have rights to MASTER by default or does that have to be granted?
And login which is a member of the sysadmin role has all rights everywhere on a particular instance of SQL Server. Those rights are implicit. Basically, being a member of the sysadmin server role means the login ignores all security checks. So yes, it does.
K. Brian Kelley
@kbriankelley
January 24, 2011 at 7:55 am
is there a work around in SQL 2005, 2008, 2008 R2 that allows for ;
alter login [DomainGroupName] DISABLE;
thanks
February 3, 2011 at 7:20 am
Geoff A (1/24/2011)
is there a work around in SQL 2005, 2008, 2008 R2 that allows for ;
alter login [DomainGroupName] DISABLE;
thanks
No, this behavior is by design. What you can do is:
DENY CONNECT SQL TO [DomainGroupName];
K. Brian Kelley
@kbriankelley
Viewing 6 posts - 31 through 35 (of 35 total)
You must be logged in to reply to this topic. Login to reply