Compartir a través de


IsDbDdlAdmin Propiedad

Gets a Boolean property value that specifies whether the current user is a member of the DbDdlAdmin database role.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property IsDbDdlAdmin As Boolean
    Get
'Uso
Dim instance As Database
Dim value As Boolean

value = instance.IsDbDdlAdmin
[SfcPropertyAttribute(SfcPropertyFlags.Expensive)]
public bool IsDbDdlAdmin { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Expensive)]
public:
property bool IsDbDdlAdmin {
    bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Expensive)>]
member IsDbDdlAdmin : bool
function get IsDbDdlAdmin () : boolean

Valor de la propiedad

Tipo: System. . :: . .Boolean
A Boolean value that specifies whether the current user is a member of the DbDdlAdmin database role.
If True, the current user is a member of the DbDdlAdmin database role. Otherwise, False (default).

Ejemplos

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display  information about the database.
Console.WriteLine("Is Database snapshot : " + _
db.IsDatabaseSnapshot.ToString)
Console.WriteLine("Is Database snapshot base : " + _
db.IsDatabaseSnapshotBase.ToString)
Console.WriteLine("User is Aministrator : " + _
db.IsDbAccessAdmin.ToString)
Console.WriteLine("User is backup operator : " + _
db.IsDbBackupOperator.ToString)
Console.WriteLine("User is data reader : " + _
db.IsDbDatareader.ToString)
Console.WriteLine("User is data writer : " + _
db.IsDbDatawriter.ToString)
Console.WriteLine("User is DDL administrator : " + _
db.IsDbDdlAdmin.ToString)
Console.WriteLine("User denied data reader : " + _
db.IsDbDenyDatareader.ToString)
Console.WriteLine("User denied data writer : " + _
db.IsDbDenyDatawriter.ToString)
Console.WriteLine("User is database owner : " + _
db.IsDbOwner.ToString)
Console.WriteLine("User security administrator : " + _
db.IsDbSecurityAdmin.ToString)
Console.WriteLine("Full text is enabled : " + _
db.IsFullTextEnabled.ToString)
Console.WriteLine("Database is a mail host : " + _
db.IsMailHost.ToString)
Console.WriteLine("Mirroring is enabled : " + _
db.IsMirroringEnabled.ToString)
Console.WriteLine("Database is a system object : " + _
db.IsSystemObject.ToString)
Console.WriteLine("Database is updateable : " + _
db.IsUpdateable.ToString)