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.
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 mixedif 1 then windows authentication only--------------------keeping it simple... |
 |
|
|
|
|