Application.LoadFromSqlServer Method
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
public Package LoadFromSqlServer ( string packagePath, string serverName, string serverUserName, string serverPassword, IDTSEvents events )
public Package LoadFromSqlServer ( String packagePath, String serverName, String serverUserName, String serverPassword, IDTSEvents events )
public function LoadFromSqlServer ( packagePath : String, serverName : String, serverUserName : String, serverPassword : String, events : IDTSEvents ) : Package
Parameters
- packagePath
The name and path of the package to load.
- serverName
The name of the instance of SQL Server that the package is loaded from.
- serverUserName
The account name used to log on to the server.
- serverPassword
The password of the account.
- events
An IDTSEvents interface.
Return Value
The package that was loaded.The following code example loads a sample package, which was previously saved to the File System.
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 ExecuteProcess sample installed with // the SSIS package samples. string pkg = @"C:\Program Files\Microsoft SQL Server\90\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 a name of UsingExecuteProcess. Package pkgIn = new Package(); pkgIn = app.LoadFromSqlServer("\\UsingExecuteProcess", "yourserver", null, null, null); DateTime pkgCreation = pkgIn.CreationDate; Console.WriteLine("Creation Date = {0}", pkgCreation); } } }
Sample Output:
Creation Date = 5/5/2003 5:46:00 PM
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.Target Platforms
I think the serverUserName and serverPassword mentioned in this method's parameters are only for SQL authenticated accounts (ie. 'sa' and the like), and will not accommodate Windows accounts (domain\account or machine\account).
If you want to use Windows accounts to load the package from SQL, you have to run your custom app under that windows security context when launching your app, or use impersonation, and leave these parameters as NULL (nothing in VB) when calling the method, as shown in the samples above.
- 1/7/2009
- Jason H - SQL
- 4/13/2009
- Jason H - SQL