问题标签 [ssis-2016]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
web-services - Can I capture a session cookie in a SSIS web service task and pass it to a second web service task?
I am maintaining a SSIS package that talks to an external SOAP Web Service to get some data to process. The web service call is inside a script task. It calls one method to authenticate, receives a token and session cookie back and then calls the method that returns data, passing in some parameters including the token, and also passes back the session cookie.
Is it possible to use Web Service tasks to achieve this to make maintenance easier? I know I can call the first method in a web service task, but I don't know how to ensure that the session cookie that is returned is retained and passed to the next web service task.
sql-server - 无法从 SQL Server 中的 MSDB 触发 SSIS 包
目前,SSIS 2012 包部署在 SQL Server 2012 上的 MSDB 中,并且运行良好。
我们已经通过批处理实用程序将 MSDB 中的相同包迁移到 SQL Server 2016,在创建 SQL Server 作业并从 MSDB(SQL Server 2016)映射“主”包并执行相同的作业后,它在 2 分钟内成功执行,但是包没有被触发。
请帮我解决这个问题。
ssis - 无法将 SSIS 包部署到 SQL Server 2016
目前 SSIS 包 2012 在 SQL Server 2012 中运行良好,因此我们已将对象迁移到 SQL Server 2016,并且相同的包也转换为 2016 并部署到 SQL Server 2016,但遇到以下错误。
批处理文件 - 我们在 64 位的程序文件中没有 dtutil:
"C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\dtutil.exe" /FILE "G:\MSDB2016\MSDB2016\MSDB2016\Package.dtsx" /DestServer <> /COPY SQL;"MISSnOP_Test2016 \包" /Q > test1.txt
错误 - test1.txt:
Microsoft (R) SQL Server SSIS Package Utilities Version 11.0.6020.0 for 32-bit 版权所有 (C) Microsoft Corporation 2012。保留所有权利。
由于错误 0xC0011008,无法加载包“G:\MSDB2016\MSDB2016\MSDB2016\Package.dtsx”。说明:由于错误 0xC0011008“从 XML 加载时出错。无法为此问题指定更多详细的错误信息,因为没有传递事件对象来存储详细的错误信息。”导致包加载失败。当 CPackage::LoadFromXML 失败时会发生这种情况。来源:包
笔记 :
相同的 2012 包部署在 SQL Server 2016 (MSDB) 中,SQL 作业工作正常但未触发包(数据未更新到审计表中)。相同的包在 VS 2010 和 VS 2015 中手动运行良好。我尝试了很多东西,但无法解决这个问题。请帮我解决同样的问题。
sql-server - 在 SSIS 脚本任务中,当它部署为单个包时未执行
我有一个 SSIS 包,我在其中使用脚本任务。有时在对此包进行更改并将其部署为单个包后,我发现该包运行时没有错误,但实际上并未执行脚本任务。如果我将项目作为一个整体进行部署 - 无需对包进行任何更改,脚本任务就完美了。
简而言之,如果我进行项目部署,脚本任务按预期工作,但作为包部署它不起作用,有时无法部署项目,因此这种解决方法并不总是可用。
我正在使用 Vs 2016,我的目标部署版本也是 SQL Server 2016。
我无法确定此类问题的根本原因。