Add advanced tab (#24267)

This commit is contained in:
Barbara Valdez
2023-09-01 16:53:46 -07:00
committed by GitHub
parent d2668d8eb8
commit e05ee98dae
4 changed files with 200 additions and 2 deletions

View File

@@ -546,6 +546,20 @@ export interface Server extends ObjectManagement.SqlObject {
dataLocation: string;
logLocation: string;
backupLocation: string;
allowTriggerToFireOthers: boolean;
blockedProcThreshold: NumericServerProperty;
cursorThreshold: NumericServerProperty;
defaultFullTextLanguage: string;
defaultLanguage: string;
fullTextUpgradeOption: string;
maxTextReplicationSize: NumericServerProperty;
optimizeAdHocWorkloads: boolean;
scanStartupProcs: boolean;
twoDigitYearCutoff: number;
costThresholdParallelism: NumericServerProperty;
locks: NumericServerProperty;
maxDegreeParallelism: NumericServerProperty;
queryWait: NumericServerProperty;
}
/**
@@ -573,6 +587,8 @@ export interface NumericServerProperty {
}
export interface ServerViewInfo extends ObjectManagement.ObjectViewInfo<Server> {
languageOptions: string[];
fullTextUpgradeOptions: string[];
}
export const enum FileGrowthType {