Application.SaveToSqlServer Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Salva un pacchetto in un'istanza di SQL Server.
public:
void SaveToSqlServer(Microsoft::SqlServer::Dts::Runtime::Package ^ package, Microsoft::SqlServer::Dts::Runtime::IDTSEvents ^ events, System::String ^ serverName, System::String ^ serverUserName, System::String ^ serverPassword);
public void SaveToSqlServer (Microsoft.SqlServer.Dts.Runtime.Package package, Microsoft.SqlServer.Dts.Runtime.IDTSEvents events, string serverName, string serverUserName, string serverPassword);
member this.SaveToSqlServer : Microsoft.SqlServer.Dts.Runtime.Package * Microsoft.SqlServer.Dts.Runtime.IDTSEvents * string * string * string -> unit
Public Sub SaveToSqlServer (package As Package, events As IDTSEvents, serverName As String, serverUserName As String, serverPassword As String)
Parametri
- package
- Package
Pacchetto da salvare.
- events
- IDTSEvents
Oggetto IDTSEvents.
- serverName
- String
Nome dell'istanza di SQL Server in cui salvare il pacchetto.
- serverUserName
- String
Nome utente utilizzato per l'accesso al server.
- serverPassword
- String
La password per l'account utente.
Esempio
Nell'esempio di codice seguente viene salvato il pacchetto di esempio in SQL Server. Per verificare che il pacchetto sia stato salvato, eseguire la query Transact-SQL seguente sul database msdb . La query restituisce tutti i pacchetti archiviati nella tabella di sistema msdb .
select * from sysssispackages
In alternativa, connettersi al servizio Integration Services, espandere Pacchetti archiviati e quindi espandere MSDB. Il pacchetto con il nome UsingExecuteProcess verrà elencato.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace LoadFromSQLServerTest
{
class Program
{
static void Main(string[] args)
{
// The variable, pkg, points to the location
// of the UsingExecuteProcess sample installed with
// the SSIS package samples.
string pkg = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx";
Application app = new Application();
Package loadedPkg = app.LoadPackage(pkg, null);
// Save the package to SQL Server.
app.SaveToSqlServer(loadedPkg, null, "yourserver", null, null);
// The package can now be viewed in the
// Microsoft SQL Server Management Studio, in the
// Integration Services / Stored Packages / MSDB folder,
// with the name UsingExecuteProcess.
Package pkgIn = new Package();
pkgIn = app.LoadFromSqlServer("\\UsingExecuteProcess", "yourserver", null, null, null);
DateTime pkgCreation = pkgIn.CreationDate;
Console.WriteLine("Creation Date = {0}", pkgCreation);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace LoadFromSQLServerTest
Class Program
Shared Sub Main(ByVal args() As String)
' The variable, pkg, points to the location
' of the UsingExecuteProcess sample installed with
' the SSIS package samples.
Dim pkg As String = "C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx"
Dim app As Application = New Application()
Dim loadedPkg As Package = app.LoadPackage(pkg,Nothing)
' Save the package to SQL Server.
app.SaveToSqlServer(loadedPkg, Nothing, "yourserver", Nothing, Nothing)
' The package can now be viewed in the
' Microsoft SQL Server Management Studio, in the
' Integration Services / Stored Packages / MSDB folder,
' with the name UsingExecuteProcess.
Dim pkgIn As Package = New Package()
pkgIn = app.LoadFromSqlServer("\\UsingExecuteProcess", "yourserver", Nothing, Nothing, Nothing)
Dim pkgCreation As DateTime = pkgIn.CreationDate
Console.WriteLine("Creation Date = {0}", pkgCreation)
End Sub
End Class
End Namespace
Esempio di output
Creation Date = 5/5/2003 5:46:00 PM