|
Posted by Erland Sommarskog on 02/04/06 00:13
Mel Smith (medsyntel@aol.com) writes:
> Have just installed a 120-day evaluation copy of MSSQL 2000.
>
> In the 'blur' and confusion of installing this on my WinXP Laptop, I
> forgot to record the password.
>
> Finally, I got into the 'logins' tab on the Enterprise Manager, and
> modified the 'sa' password to 'ivlem1', and I think it was recorded
> properly.
>
> I tried to test my installation with the following at the Command
> Prompt:
>
> osql /Usa /P ivlem1
>
> It failed saying I wasn't 'Trusted'
SQL Server have to means of authentication: Windows authentication (a.k.a
Integrated Security or Trusted Connection) and SQL Server authentication.
Windows authentication is always there, SQL authentication is optional,
and usually referred to as "mixed mode".
Windows authentcation means that you log into SQL Server with your
Windows credentials. This is very simple, you just say "osql /E" and
you are on the air. No need for password, as you are already logged
into Windows.
By default, only Windows authentication is enabled. This is because
SQL Server authentication is less secure. However, many enable
SQL authentiation for various reasons. For instance, if you are a
developer you may work with Windows authentication as long as you
develop and have sysadmin rights. But when you need to test, you
want a low-priv user, and testing different users is much easier
with SQL authentication.
You can change authentication mode from Enterprise Manager. Right-
click the server, select Properties, and then use the Security tab.
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
Navigation:
[Reply to this message]
|