Home > Web Front-end > JS Tutorial > Display SQL Server Login Mode_javascript技巧

Display SQL Server Login Mode_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 19:12:19
Original
1359 people have browsed it

Display SQL Server Login Mode.

Supported Platforms

SQL Server 2000
 Yes


Script Code

SQLDMOSecurity_Integrated  = 1 
SQLDMOSecurity_Mixed         = 2 
SQLDMOSecurity_Normal       = 0
SQLDMOSecurity_Unknown   = 9 

strDBServerName = "."

Set objSQLServer = CreateObject("SQLDMO.SQLServer")

Select Case objSQLServer.ServerLoginMode(strDBServerName)
   Case SQLDMOSecurity_Integrated
      WScript.Echo "Login Mode: Allow Windows Authentication only."
   Case SQLDMOSecurity_Mixed
      WScript.Echo "Login Mode: Allow Windows Authentication or SQL Server Authentication."
   Case SQLDMOSecurity_Normal
      WScript.Echo "Login Mode: Allow SQL Server Authentication only."
   Case SQLDMOSecurity_Unknown
      WScript.Echo "Login Mode: Security type unknown."
End Select

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Verification code display
From 1970-01-01 08:00:00
0
0
0
Chinese display abnormality
From 1970-01-01 08:00:00
0
0
0
How to display plugin directly in datepicker?
From 1970-01-01 08:00:00
0
0
0
Where can I find the product display renderings?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template