diff --git a/setup_all.ps1 b/setup_all.ps1 index 9c6f12c..5c31504 100644 --- a/setup_all.ps1 +++ b/setup_all.ps1 @@ -85,7 +85,7 @@ Get-Content $scriptRootPath\Azure\StoredProcs\cstore_GetAlignment.sql, $scriptRo Get-Content -Path "$($scriptRootPath)\Azure\Extended Events\*.*" -Include *.sql -Exclude setup_all_extended_events.sql | Set-Content "$($scriptRootPath)\Azure\Extended Events\setup_all_extended_events.sql" -#$cred = Get-Credential -errorAction SilentlyContinue; +$cred = Get-Credential -errorAction SilentlyContinue; $InstallCISLExists = Get-Command Install-CISL -errorAction SilentlyContinue; if( $InstallCISLExists ) @@ -95,5 +95,5 @@ if( $InstallCISLExists ) Install-CISL -SQLInstance .\SQL16 } if ( $cred ){ - Install-CISL -SQLInstance "columnstore.database.windows.net" -cred $cred + Install-CISL -SQLInstance "columnstore.database.windows.net" -cred $cred -installDBs "cisl" } \ No newline at end of file diff --git a/setup_dac.ps1 b/setup_dac.ps1 index fd7f259..ccf66e9 100644 --- a/setup_dac.ps1 +++ b/setup_dac.ps1 @@ -16,15 +16,15 @@ # See the License for the specific lan guage governing permissions and # limitations under the License. -$CISLVersion = "141" +$CISLVersion = "150" $sqlPackageLocation = "C:\Program Files (x86)\Microsoft SQL Server\130\DAC\bin\sqlpackage.exe" $dacpacLocation = "Z:\MEOCloud\CISL GitHub\CISL\Releases\DacPacs\" $sql2012 = ".\SQL12" $sql2014 = ".\SQL14" $sql2016 = ".\SQL16" -$sqlAzure = "x.database.windows.net" -$sqlAzureUser = "x" -$sqlAzurePass = "x" +$sqlAzure = "#.database.windows.net" +$sqlAzureUser = "#" +$sqlAzurePass = "#" # Verify if the SQLPackage.exe location is correctly specified if( !(Test-Path $sqlPackageLocation) ){