We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
powershell -NoProfile
Invoke-DbaDbShrink ... -StepSize 512MB ...
Shrink database files in 512MB chunks
does nothing due to an error in math at line 256
$shrinkSize = $startingSize - (($StepSizeKB * 1024 * 1024) * $i)
all variables is KB units.
The text was updated successfully, but these errors were encountered:
olegstrutinskii
Successfully merging a pull request may close this issue.
Before submitting a bug report:
powershell -NoProfile
)Steps to Reproduce
Expected Behavior
Shrink database files in 512MB chunks
Actual Behavior
does nothing due to an error in math at line 256
all variables is KB units.
The text was updated successfully, but these errors were encountered: