Skip to content
New issue

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

New-DcnClone: Enumerating databases triggers error #216

Closed
4 tasks done
lowlydba opened this issue Jul 28, 2022 · 0 comments · Fixed by #217
Closed
4 tasks done

New-DcnClone: Enumerating databases triggers error #216

lowlydba opened this issue Jul 28, 2022 · 0 comments · Fixed by #217

Comments

@lowlydba
Copy link
Contributor

lowlydba commented Jul 28, 2022

Before submitting the bug

  • Ensure you are able to reproduce it on the latest released version (we release often)
  • Verified this bug is not already reported in an issue
  • Verified errors are not related to permissions
  • Can reproduce in a clean PowerShell session (clean = powershell -NoProfile)

Describe the bug
When enumerating databases in SMO with other clones being created simultaneously, sometimes the verifying block encounters an error.

if ($PSCmdlet.ShouldProcess($cloneDatabase, "Verifying database existence")) {
if ($server.Databases.Name -contains $cloneDatabase) {
Stop-PSFFunction -Message "Database $cloneDatabase is already present on $SqlInstance" -Target $SqlInstance

Which spits out:

VERBOSE: Performing the operation "Verifying database existence" on target "database-a".
Unable to create database [database-a]: The following exception occurred while trying to enumerate the collection: "Database 'database-b' is in transition. Try the statement later.".

I believe switching in the more robust Get-DbaDatabase command may be a quick solve here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant