More server properties fixes (#24366)

* fix locks min value

* disable login auditing in linux

* disable some properties from advanced tab
This commit is contained in:
Barbara Valdez
2023-09-11 12:53:25 -07:00
committed by GitHub
parent 89e41572a8
commit 41e7569fde
4 changed files with 24 additions and 7 deletions

View File

@@ -593,8 +593,8 @@ export interface Server extends ObjectManagement.SqlObject {
* The server login types.
*/
export const enum ServerLoginMode {
Integrated, //windows auth only
Mixed // both sql server and windows auth
Integrated = 1, //windows auth only
Mixed = 2// both sql server and windows auth
}
/**