第 2-2 课 - 验证部署捆绑
适用于: SQL Server
Azure 数据工厂中的 SSIS Integration Runtime
在第 1 课中,创建了 Deployment Tutorial 项目,并向该项目添加了包和辅助文件;在上一任务中,您为项目生成了部署实用工具。
在此任务中,您将验证部署捆绑的内容。 部署捆绑是将复制到目标计算机并用来安装包的文件夹。 如果将默认值 bin\Deployment 用作部署实用工具的位置,则在 Integration Services 项目中部署捆绑是 Deployment Tutorial 文件夹中的 Bin\Deployment 文件夹。
验证部署捆绑的内容
找到计算机上的 bin\Deployment 文件夹。
验证是否存在下列文件:
DataTransfer.dtsx
datatransferconfig.dtsconfig
Deployment Tutorial.SSISDeploymentManifest
LoadXMLData.dtsx
loadxmldataconfig.dtsconfig
NewCustomers.txt
orders.xml
orders.xsd
Readme.txt
右键单击“Deployment Tutorial.SSISDeploymentManifest”,指向“打开方式”,再单击“Internet Explorer”。 也可以在文本编辑器(如记事本)中打开该文件。 文件的 XML 代码应该如下所示:
<?xml version="1.0"?><DTSDeploymentManifest GeneratedBy="Domain\UserName" GeneratedFromProjectName="Deployment Tutorial" GeneratedDate="2006-02-24T13:29:02.6537669-08:00" AllowConfigurationChanges="true"><Package>DataTransfer.dtsx</Package><Package>LoadXMLData.dtsx</Package><ConfigurationFile>datatransferconfig.dtsconfig</ConfigurationFile><ConfigurationFile>loadxmldataconfig.dtsconfig</ConfigurationFile><MiscellaneousFile>Readme.txt</MiscellaneousFile><MiscellaneousFile>orders.xml</MiscellaneousFile><MiscellaneousFile>NewCustomers.txt</MiscellaneousFile><MiscellaneousFile>orders.xsd</MiscellaneousFile></DTSDeploymentManifest>
验证确保“AllowConfigurationChanges”属性的值为“true”,XML 包括两个包中每个包的 Package 元素、四个非包文件中每个文件的 MiscellaneousFile 元素以及两个 XML 配置文件中每个文件的 ConfigurationFile 元素。
退出 Internet Explorer 或文本编辑器。