Skip to content

Commit

Permalink
Typos Update Get-DbaDbccHelp.ps1 (#9424)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeyBronowski authored Jul 21, 2024
1 parent c7df5a9 commit 4a576df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/Get-DbaDbccHelp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ function Get-DbaDbccHelp {
.EXAMPLE
PS C:\> Get-DbaDbccHelp -SqlInstance SQLInstance -Statement FREESYSTEMCACHE -Verbose | Format-List
Runs the command DBCC HELP(FREESYSTEMCACHE) WITH NO_INFOMSGS against the SQL Server instance SQLInstance
Runs the command DBCC HELP(FREESYSTEMCACHE) WITH NO_INFOMSGS against the SQLInstance SQL Server instance.
.EXAMPLE
PS C:\> Get-DbaDbccHelp -SqlInstance LensmanSB -Statement WritePage -IncludeUndocumented | Format-List
PS C:\> Get-DbaDbccHelp -SqlInstance SQLInstance -Statement WritePage -IncludeUndocumented | Format-List
Sets TraeFlag 2588 on for session and then runs the command DBCC HELP(WritePage) WITH NO_INFOMSGS against the SQL Server instance SQLInstance
Sets Trace Flag 2588 on for the session and then runs the command DBCC HELP(WritePage) WITH NO_INFOMSGS against the SQLInstance SQL Server instance.
#>
[CmdletBinding()]
Expand Down Expand Up @@ -105,4 +105,4 @@ function Get-DbaDbccHelp {

}
}
}
}

0 comments on commit 4a576df

Please sign in to comment.