You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
second that, using sql2017 for 9.0.2 shouldn't be an issue.
you could simply extend the ignore switch to the sql2017 check as well.
#Check for 2016 or ignore if flag is specified.
if($sqlVersion -ne 13 -and !$IgnoreSQL2016SP2){
throw "Invalid SQL Server Version"
}
theres a hard check for sql2016.
if($sqlVersion -ne 13){
throw "Invalid SQL Server Version"
}
The text was updated successfully, but these errors were encountered: