-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed EngineEdition check to include Managed Instance Added utility sqlcmd mode file that executes all instal scripts.
- Loading branch information
Showing
9 changed files
with
34 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- IMPORTANT: Swith to SQLCMD mode using Query/SQLCMD Mode in SSMS menu! | ||
|
||
-- Set the path where *.sql files are placed | ||
-- (e.g. the current folder where this file is placed) | ||
:setvar path "C:\GitHub\CISL\Azure\StoredProcs\" | ||
|
||
:r $(path)cstore_GetRowGroups.sql | ||
:r $(path)cstore_GetRowGroupsDetails.sql | ||
:r $(path)cstore_GetAlignment.sql | ||
:r $(path)cstore_GetDictionaries.sql | ||
:r $(path)cstore_GetFragmentation.sql | ||
:r $(path)cstore_SuggestedTables.sql | ||
:r $(path)cstore_doMaintenance.sql | ||
|
||
/* | ||
To cleanup: | ||
:setvar path "C:\GitHub\CISL\Azure\StoredProcs\" | ||
:r $(path)cstore_cleanup.sql | ||
*/ |