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

Fix typos in DbaDbDbcc commands #9494

Merged
merged 4 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/Invoke-DbaDbDbccCheckConstraint.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function Invoke-DbaDbDbccCheckConstraint {
.EXAMPLE
PS C:\> 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCheckConstraint -WhatIf

Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databses on Sql1 and Sql2/sqlexpress
Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databases on Sql1 and Sql2/sqlexpress.

#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Low')]
Expand Down Expand Up @@ -214,4 +214,4 @@ function Invoke-DbaDbDbccCheckConstraint {
}
}
}
}
}
4 changes: 2 additions & 2 deletions public/Invoke-DbaDbDbccCleanTable.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function Invoke-DbaDbDbccCleanTable {
.EXAMPLE
PS C:\> 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCleanTable -Object 'dbo.SomeTable' -BatchSize 5000

Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databses on Sql1 and Sql2/sqlexpress
Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databases on Sql1 and Sql2/sqlexpress.

#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High')]
Expand Down Expand Up @@ -162,4 +162,4 @@ function Invoke-DbaDbDbccCleanTable {
}
}
}
}
}
4 changes: 2 additions & 2 deletions public/Invoke-DbaDbDbccUpdateUsage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function Invoke-DbaDbDbccUpdateUsage {
.EXAMPLE
PS C:\> 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccUpdateUsage -WhatIf

Displays what will happen if command DBCC UPDATEUSAGE is called against all databses on Sql1 and Sql2/sqlexpress
Displays what will happen if command DBCC UPDATEUSAGE is called against all databases on Sql1 and Sql2/sqlexpress.

#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High')]
Expand Down Expand Up @@ -196,4 +196,4 @@ function Invoke-DbaDbDbccUpdateUsage {
}
}
}
}
}
Loading