Get SqlDscDatabasePermission - dsccommunity/SqlServerDsc GitHub Wiki
Returns the current permissions for the database principal.
Get-SqlDscDatabasePermission [-ServerObject] <Server> [-DatabaseName] <String> [-Name] <String>
[<CommonParameters>]
Returns the current permissions for the database principal.
$serverInstance = Connect-SqlDscDatabaseEngine
Get-SqlDscDatabasePermission -ServerObject $serverInstance -DatabaseName 'MyDatabase' -Name 'MyPrincipal'
Get the permissions for the principal 'MyPrincipal'.
Specifies the database name.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the name of the database principal for which the permissions are returned.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies current server connection object.
Type: Server
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
This command excludes fixed roles like db_datareader by default, and will
always return $null
if a fixed role is specified as Name.
If specifying -ErrorAction 'SilentlyContinue'
then the command will silently
ignore if the database (parameter DatabaseName) is not present or the
database principal is not present.
In such case the command will return $null
.
If specifying -ErrorAction 'Stop'
the command will throw an error if the
database or database principal is missing.