Server.Revoke Method (ServerPermissionSet, String, Boolean, Boolean)

Revokes previously granted permissions from a grantee on the instance of SQL Server and any other users to whom the grantee has granted the specified set of permissions. The grantee is also given the ability to revoke the specified set of permissions from other users under an assumed role.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Sub Revoke ( _
    permission As ServerPermissionSet, _
    granteeName As String, _
    revokeGrant As Boolean, _
    cascade As Boolean _
)
'Usage
Dim instance As Server
Dim permission As ServerPermissionSet
Dim granteeName As String
Dim revokeGrant As Boolean
Dim cascade As Boolean

instance.Revoke(permission, granteeName, _
    revokeGrant, cascade)
public void Revoke(
    ServerPermissionSet permission,
    string granteeName,
    bool revokeGrant,
    bool cascade
)
public:
void Revoke(
    ServerPermissionSet^ permission, 
    String^ granteeName, 
    bool revokeGrant, 
    bool cascade
)
member Revoke : 
        permission:ServerPermissionSet * 
        granteeName:string * 
        revokeGrant:bool * 
        cascade:bool -> unit 
public function Revoke(
    permission : ServerPermissionSet, 
    granteeName : String, 
    revokeGrant : boolean, 
    cascade : boolean
)

Parameters

  • granteeName
    Type: System.String
    A String value that specifies a grantee to be revoked the set of permissions.
  • revokeGrant
    Type: System.Boolean
    A Boolean property that specifies whether the grantee is given the ability to revoke the specified set of permissions from other users on the instance of SQL Server.
    If True, the grantee is given the ability to revoke the specified set of permissions from other users on the instance of SQL Server.
    If False, the grantee is not given the ability to revoke the specified set of permissions from other users on the instance of SQL Server.
  • cascade
    Type: System.Boolean
    A Boolean property that specifies whether users, to whom the grantee has granted the specified set of permissions, are also revoked the set of permissions.
    If True, the grantee and users to whom the grantee granted the specified set of permission are all revoked the specified set of permissions on the instance of SQL Server.
    If False, only the grantee is revoked the specified set of permissions.

Examples

'Connect to the local, default instance of SQL Server.
Dim svr As Server
svr = New Server()
'Define a ServerPermissionSet that contains permission to Create Endpoint and Alter Any Endpoint.
Dim sps As ServerPermissionSet
sps = New ServerPermissionSet(ServerPermission.CreateEndpoint)
sps.Add(ServerPermission.AlterAnyEndpoint)
'This sample assumes that the grantee already has permission to Create Endpoints. 
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
Dim spis As ServerPermissionInfo()
spis = svr.EnumServerPermissions(vGrantee, sps)
Dim spi As ServerPermissionInfo
Console.WriteLine("=================Before revoke===========================")
For Each spi In spis
    Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine(" ")
'Remove a permission from the set.
sps.Remove(ServerPermission.CreateEndpoint)
'Revoke the create endpoint permission from the grantee.
svr.Revoke(sps, vGrantee)
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
spis = svr.EnumServerPermissions(vGrantee, sps)
Console.WriteLine("=================After revoke============================")
For Each spi In spis
    Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine(" ")
'Grant the Create Endpoint permission to the grantee.
svr.Grant(sps, vGrantee)
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
spis = svr.EnumServerPermissions(vGrantee, sps)
Console.WriteLine("=================After grant=============================")
For Each spi In spis
    Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine("")