Re: Enforcing strong passwords in SQL Server
From: Toni Lassila (mpao@mc-europe.com)
Date: 10/03/02
- Next message: Ken Schaefer: "Re: Service Pack 4 for SQL Server 7.0"
- Previous message: Colin Donald: "Service Pack 4 for SQL Server 7.0"
- In reply to: Abhishek: "Enforcing strong passwords in SQL Server"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: mpao@mc-europe.com (Toni Lassila) Date: 3 Oct 2002 00:01:04 -0700
"Abhishek" <abhi_narulkar@hotmail.com> wrote in message news:<71e301c263ae$8c1438b0$35ef2ecf@TKMSFTNGXA11>...
> Hi,
> I need to enforce strong passwords in SQL Server.The
> passwords should be of some minimum length and should
> contain some special characters.This should be checked
> specially for the sa account.The sa account should be
> checked for the blank passwords.
If you just want to see which SQL logins have blank
passwords, this should do it (run in master db):
select name from syslogins where password is null and
(isntname+isntgroup+isntuser) = 0
In any case, you're better off using Windows Authentication
and setting the 'sa' password to something 128 characters
long and forgetting it in the vault.
- Next message: Ken Schaefer: "Re: Service Pack 4 for SQL Server 7.0"
- Previous message: Colin Donald: "Service Pack 4 for SQL Server 7.0"
- In reply to: Abhishek: "Enforcing strong passwords in SQL Server"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|
|