使用和执行SQL Server Integration Services包的方法

SQL 小号 QL Server 小号 erver Integration ntegration Services) are a part of the Microsoft SQL Server database platform and a tool for building high performance data integration and workflow applications. It is also a tool for data extraction, transformation, and loading (ETL), and can be used to automate maintenance of the SQL Server databases and updates. Basically, they can be used for moving data, with no transformations, from a variety of source types to a variety of destination types, including text files and other SQL Server instances 小号 ervices)是Microsoft SQL Server数据库平台的一部分,用于构建高性能数据集成和工作流应用程序的工具。 它也是用于数据提取,转换和加载(ETL)的工具,可用于自动维护SQL Server数据库和更新。 基本上,它们可以用于从各种源类型到各种目标类型(包括文本文件和其他SQL Server实例)的数据传输,而无需进行任何转换。

These packages can be stored on the Integration Services server, in the SSIS Package Store, msdb database, and in the file system, outside the location that is part of the package store

这些程序包可以存储在Integration Services服务器上, SSIS程序包存储,msdb数据库中以及文件系统中 ,在程序包存储的一部分之外。

In this article, I will explain how to execute SSIS packages using:

在本文中,我将解释如何使用以下命令执行SSIS包:

  • SQL Server Management Studio (SSMS),

    SQL Server Management Studio(SSMS),
  • DTEXECUI.EXE Utility

    DTEXECUI.EXE实用程序
  • DTEXEC.EXE Command Line Utility

    DTEXEC.EXE命令行实用程序
  • SQL Server Agent Job

    SQL Server代理作业

使用SSMS执行SSIS包 (Executing SSIS packages using SSMS)

Execution in SSMS is can be accomplished if connection is established through an instance of the Database engine that hosts the Integration Service server (Package must be stored on the Integration Service server), or if the connection is established through the Integration Server that manages an SSIS package store (A package must be stored in the package store or in the msdb database)

如果通过承载Integration Service服务器的数据库引擎实例建立连接(包必须存储在Integration Service服务器上),或者通过管理SSIS的Integration Server建立连接,则可以完成SSMS的执行。

你可能感兴趣的:(数据库,java,python,mysql,大数据)