Skip to content

Commit

Permalink
few more spellings...
Browse files Browse the repository at this point in the history
  • Loading branch information
jpomfret committed Sep 13, 2019
1 parent bd31039 commit 2d0d395
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions functions/Export-DbaDbRole.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function Export-DbaDbRole {
Exports database roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.
.DESCRIPTION
Exports databsase roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.
Exports database roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.
This command is based off of John Eisbrener's post "Fully Script out a MSSQL Database Role"
Reference: https://dbaeyes.wordpress.com/2013/04/19/fully-script-out-a-mssql-database-role/
Expand Down Expand Up @@ -137,7 +137,7 @@ function Export-DbaDbRole {
.EXAMPLE
PS C:\> Get-DbaDbRole -SqlInstance sqlserver2008 -ExcludeFixedRole | Export-DbaDbRole
Exports all roles from all databases on sqlserver2008, exludes all roles marked as as FixedRole
Exports all roles from all databases on sqlserver2008, excludes all roles marked as as FixedRole
#>
[CmdletBinding()]
Expand Down
4 changes: 2 additions & 2 deletions functions/Export-DbaServerRole.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function Export-DbaServerRole {
.EXAMPLE
PS C:\> Export-DbaServerRole -SqlInstance sqlserver2008 -ExcludeFixedRole -ExcludeServerRole Public -IncludeRoleMember -FilePath C:\temp\ServerRoles.sql -Append -BatchSeparator ''
Exports server roles from sqlserver2008, exludes all roles marked as as FixedRole and Public role. Includes RoleMembers and writes to file C:\temp\ServerRoles.sql, appending to file if it exits. Does not include a BatchSeparator
Exports server roles from sqlserver2008, excludes all roles marked as as FixedRole and Public role. Includes RoleMembers and writes to file C:\temp\ServerRoles.sql, appending to file if it exits. Does not include a BatchSeparator
.EXAMPLE
PS C:\> Get-DbaServerRole -SqlInstance sqlserver2012, sqlserver2014 | Export-DbaServerRole
Expand All @@ -124,7 +124,7 @@ function Export-DbaServerRole {
.EXAMPLE
PS C:\> Get-DbaServerRole -SqlInstance sqlserver2016 -ExcludeFixedRole -ExcludeServerRole Public | Export-DbaServerRole -IncludeRoleMember
Exports server roles from sqlserver2016, exludes all roles marked as as FixedRole and Public role. Includes RoleMembers
Exports server roles from sqlserver2016, excludes all roles marked as as FixedRole and Public role. Includes RoleMembers
#>
[CmdletBinding()]
Expand Down
2 changes: 1 addition & 1 deletion functions/Export-DbaXESession.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function Export-DbaXESession {
<#
.SYNOPSIS
Exports Extened Events creation script to a T-SQL file or console.
Exports Extended Events creation script to a T-SQL file or console.
.DESCRIPTION
Exports script to create Extended Events Session to sql file or console.
Expand Down
2 changes: 1 addition & 1 deletion functions/Find-DbaAgentJob.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function Find-DbaAgentJob {
Supports regular expression (e.g. MyJob*) being passed in.
.PARAMETER LastUsed
Find all jobs that havent ran in the INT number of previous day(s)
Find all jobs that haven't ran in the INT number of previous day(s)
.PARAMETER IsDisabled
Find all jobs that are disabled
Expand Down
2 changes: 1 addition & 1 deletion functions/Find-DbaInstance.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function Find-DbaInstance {
Scans localhost for instances using the browser service, traverses all instances for all databases and displays a subset of the important information in a formatted table.
Using this method reguarly is not recommended. Use Get-DbaService or Get-DbaRegServer instead.
Using this method regularly is not recommended. Use Get-DbaService or Get-DbaRegServer instead.
#>
[CmdletBinding(DefaultParameterSetName = "Default")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseApprovedVerbs", "", Justification = "Internal functions are ignored")]
Expand Down

0 comments on commit 2d0d395

Please sign in to comment.