Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 determine authentication mode by code?

Author  Topic 

Sun Foster
Aged Yak Warrior

515 Posts

Posted - 2006-04-14 : 06:15:35
I knew I can view server authentication mode from EM.
Can I determine it by code, sp or another way?

jen
Master Smack Fu Yak Hacker

4110 Posts

Posted - 2006-04-16 : 02:58:38
select serverproperty('isintegratedsecurityonly')

if 0 then mixed
if 1 then windows authentication only

--------------------
keeping it simple...
Go to Top of Page
   

- Advertisement -