Partager via


Méthode Grant (ObjectPermissionSet, String, Boolean)

Octroie l'accès à l'autorisation spécifiée et la capacité d'octroyer l'accès à d'autres utilisations au bénéficiaire spécifié sur la table.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
Public Sub Grant ( _
    permission As ObjectPermissionSet, _
    granteeName As String, _
    grantGrant As Boolean _
)
'Utilisation
Dim instance As Table
Dim permission As ObjectPermissionSet
Dim granteeName As String
Dim grantGrant As Boolean

instance.Grant(permission, granteeName, _
    grantGrant)
public void Grant(
    ObjectPermissionSet permission,
    string granteeName,
    bool grantGrant
)
public:
virtual void Grant(
    ObjectPermissionSet^ permission, 
    String^ granteeName, 
    bool grantGrant
) sealed
abstract Grant : 
        permission:ObjectPermissionSet * 
        granteeName:string * 
        grantGrant:bool -> unit 
override Grant : 
        permission:ObjectPermissionSet * 
        granteeName:string * 
        grantGrant:bool -> unit 
public final function Grant(
    permission : ObjectPermissionSet, 
    granteeName : String, 
    grantGrant : boolean
)

Paramètres

  • granteeName
    Type : System. . :: . .String
    Valeur String qui spécifie le bénéficiaire auquel refuser le jeu d'autorisations spécifié.
  • grantGrant
    Type : System. . :: . .Boolean
    Propriété Boolean qui spécifie si le bénéficiaire peut octroyer à d'autres utilisateurs le jeu d'autorisations sur la table.
    Si la valeur est True, le bénéficiaire peut octroyer à d'autres utilisateurs le jeu d'autorisations spécifié sur la table. Dans le cas contraire, la valeur est False.

Implémente

IObjectPermission. . :: . .Grant(ObjectPermissionSet, String, Boolean)

Exemples

The following code example shows how to grant a grantee account permission to select table elements. The grantee account is a placeholder for any defined user accounts.

The following database schema is used for this snippet.

//CREATE DATABASE MYTESTDB;
//GO

//USE MYTESTDB;
//GO

//CREATE TABLE TABLE1(
//    id int,
//    name varchar(32)
//);
//GO

C#

Server srv = new Server("(local)");
Database db = srv.Databases["MYTESTDB"];

Table tb = db.Tables[0];

ObjectPermissionSet objPermissionSet = new ObjectPermissionSet(ObjectPermission.Select);
objPermissionSet.Select = true;
tb.Grant(objPermissionSet, grantee, true);

Powershell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("MYTESTDB")
$tb = $db.Tables[0]

$objPermissionSet = new-object Microsoft.SqlServer.Management.Smo.ObjectPermissionSet([Microsoft.SqlServer.Management.Smo.ObjectPermission]::Select)
$objPermissionSet.Select = $TRUE
$tb.Grant($objPermissionSet, grantee, $TRUE)