gpt4 book ai didi

sql-server - 使用 dtexec 运行 SSIS 包

转载 作者:行者123 更新时间:2023-12-02 18:24:24 26 4
gpt4 key购买 nike

我正在使用 dtexec 运行 SSIS 包。该软件包在我的系统上的 BIDS 中运行良好。当我创建 SQL Server 代理作业以按计划运行包时。包运行步骤被安排为 T-SQL 任务,而不是 SSIS 包)。该作业没有报告错误,但它甚至没有在服务器上我想要的目标位置创建输出 excel 文件。

此外,当我在命令 shell 中单独运行该命令时,它会返回如下所示的错误。间歇性地,它还会在我用来复制文件的文件系统任务上返回错误,指出源或目标不存在!当相同的变量值在 BIDS 中适用时,为什么 SQL 作业失败?

Started:  7:33:27 PM
Error: 2012-10-26 19:33:27.60
Code: 0xC0016016
Source:
Description: Failed to decrypt protected XML node "DTS:Password" with error 0
x8009000B "Key not valid for use in specified state.". You may not be authorized
to access this information. This error occurs when there is a cryptographic err
or. Verify that the correct key is available.
End Error
Error: 2012-10-26 19:33:27.78
Code: 0xC00F9304
Source: GICSReport Connection manager "Excel Connection Manager"
Description: SSIS Error Code DTS_E_OLEDB_EXCEL_NOT_SUPPORTED: The Excel Conne
ction Manager is not supported in the 64-bit version of SSIS, as no OLE DB provi
der is available.
End Error
Error: 2012-10-26 19:33:27.78
Code: 0xC020801C
Source: Data Flow Task Excel Destination [22]
Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAG
ER. The AcquireConnection method call to the connection manager "Excel Connecti
on Manager" failed with error code 0xC00F9304. There may be error messages post
ed before this with more information on why the AcquireConnection method call fa
iled.
End Error
Error: 2012-10-26 19:33:27.78
Code: 0xC0047017
Source: Data Flow Task SSIS.Pipeline
Description: component "Excel Destination" (22) failed validation and returne
d error code 0xC020801C.
End Error
Error: 2012-10-26 19:33:27.78
Code: 0xC004700C
Source: Data Flow Task SSIS.Pipeline
Description: One or more component failed validation.
End Error
Error: 2012-10-26 19:33:27.79
Code: 0xC0024107
Source: Data Flow Task
Description: There were errors during task validation.
End Error
DTExec: The package execution returned DTSER_FAILURE (1).
Started: 7:33:27 PM
Finished: 7:33:27 PM
Elapsed: 0.343 seconds

请帮忙! :) ....我应该将所有变量、连接管理器和所有内容添加到我的配置文件中吗?目前我只添加了变量和连接管理器的一些 ppty 值,但似乎没有任何组合可以有效工作。

最佳答案

我要解决的第一个错误是“64 位版本的 SSIS 不支持 Excel 连接管理器,因为没有可用的 OLE DB 提供程序。”

开箱即用的 Excel 驱动程序仅存在于 32 位地址空间中。 BIDS/SSDT 是一个 32 位应用程序,因此 Excel 源和目标工作得很好。但是,当您从命令行/SQL 代理运行它们时,您需要显式使用 32 位版本的 DTEXEC 程序。

第 1 步是确保您可以在代理执行的服务器上以您自己的身份从命令行运行包。假设您的 SQL Server 安装在常规位置,您可能可以使用以下 DTEXEC.exe 之一

C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTExec.exe
c:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTExec.exe
C:\Program Files\Microsoft SQL Server\110\DTS\Binn\DTExec.exe
C:\Program Files\Microsoft SQL Server\120\DTS\Binn\DTExec.exe
C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe
C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\DTExec.exe
C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\DTExec.exe
C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\DTExec.exe

您将需要使用 (x86) 版本。 future 的读者,如果您碰巧使用的是 32 位版本的 Windows(也许是 Windows 2003),那么前 3 个将是您唯一可用的选项。正如 Vivek 的错误消息所示,他正在 64 位模式下执行 SSIS 包。

dtexec提供命令行开关/X86,允许您无缝地使用相同的可执行文件进行 32 位和 64 位操作。 谎言!文档确实指出了这一点,但是谁会阅读文档呢?

This option is only used by SQL Server Agent. This option is ignored if you run the dtexec utility at the command prompt.

因此,您需要通过提供显式路径来运行包

C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\DTExec.exe/file C:\folder\GICSReport.dtsx

我在输出中看到“无法解密 protected XML 节点”,并且您还声明您正在使用配置文件,因此您很可能可以将 PackageProtectionLevel 从默认的 EncryptSensitiveWithUserKey 更改为 DontSaveSensitive。该功能的存在是为了防止敏感数据(密码)的意外泄露,但由于您已经使用配置文件处理该问题,因此这不应该成为问题。 ...现在我想起来,这实际上可能是其他包保护级别之一的错误。

无论如何,首先尝试从 32 位可执行文件运行。如果这不起作用,请尝试按照指示更改包保护级别。如果其中任何一个使包按预期运行,则尝试从 SQL 代理运行相同的命令。

如果一切正常,请将其标记为答案。如果没有,请更新票证以显示当前生成的错误,我们将要求提供更多信息。

关于sql-server - 使用 dtexec 运行 SSIS 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13088974/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com