// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.CoreServices.Utility { /// /// Common Constant values used across multiple services /// public static class CommonConstants { public const string MasterDatabaseName = "master"; public const string MsdbDatabaseName = "msdb"; public const string ModelDatabaseName = "model"; public const string TempDbDatabaseName = "tempdb"; public const string DefaultBatchSeperator = "GO"; } }