Udostępnij za pośrednictwem


Metoda Application.GetPackageRoles

Zwraca role bazy danych, które mają dostęp do odczytu i zapisu do pakiet.Database roles apply only to packages stored in the SQL Server msdb database.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Sub GetPackageRoles ( _
    serverName As String, _
    packagePath As String, _
    <OutAttribute> ByRef readerRole As String, _
    <OutAttribute> ByRef writerRole As String _
)
'Użycie
Dim instance As Application
Dim serverName As String
Dim packagePath As String
Dim readerRole As String
Dim writerRole As String

instance.GetPackageRoles(serverName, _
    packagePath, readerRole, writerRole)
public void GetPackageRoles(
    string serverName,
    string packagePath,
    out string readerRole,
    out string writerRole
)
public:
void GetPackageRoles(
    String^ serverName, 
    String^ packagePath, 
    [OutAttribute] String^% readerRole, 
    [OutAttribute] String^% writerRole
)
member GetPackageRoles : 
        serverName:string * 
        packagePath:string * 
        readerRole:string byref * 
        writerRole:string byref -> unit 
public function GetPackageRoles(
    serverName : String, 
    packagePath : String, 
    readerRole : String, 
    writerRole : String
)

Parametry

  • serverName
    Typ: System.String
    Określ nazwę i wystąpienie serwera, który zawiera pakiet.

Przykłady

Poniższy przykład kodu pokazuje jak pobrać pakiet role, przy założeniu, że zostały zmienne zestaw aby odzwierciedlić nazwę określonego serwera, ścieżką pakietu i role.

string readerRole = null;
string writerRole = null;
app.GetPackageRoles(myServerName, packagePath, out readerRole, out writerRole);
Dim readerRole As String =  Nothing 
Dim writerRole As String =  Nothing 
app.GetPackageRoles(myServerName, packagePath, readerRole, writerRole)