sql-server-2008 – 在哪里可以找到SQL Server 2008中脚本任务的SSIS预编译属性?

前端之家收集整理的这篇文章主要介绍了sql-server-2008 – 在哪里可以找到SQL Server 2008中脚本任务的SSIS预编译属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在SSIS中创建脚本任务后出现错误

Validation error. Script Task : The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.

错误已修复(只需要成功构建脚本)并且与问题无关.

在我在StackOverflow上搜索答案的过程中,我发现了很多关于这种“预编译”设置的讨论,但是在点击SSIS中的几乎所有内容之后,我找不到它,因此问题就出现了.

我怀疑它是在以后的版本中删除但是无法证明它.如果您碰巧知道答案,请告诉我.

解决方法

我找到了答案:

Configuring the Script Component in the Script Component Editor

In sql Server 2008 Integration Services (SSIS) and later versions,all
scripts are precompiled. In prevIoUs versions,you specified whether
scripts were precompiled by setting a Precompile property for the
task.

我希望有一种更简单的方法来查找sql版本之间的功能差异.

更新 – 感谢@billinkc,我已经确定了记录变更的部分:

Script Task

Unlike earlier versions where you could indicate whether the scripts were precompiled,all scripts are precompiled in sql Server 2008 Integration Services (SSIS). When a script is precompiled,the language engine is not loaded at run time and the package runs more quickly. However,precompiled binary files consume significant disk space.

原文链接:https://www.f2er.com/mssql/79332.html

猜你在找的MsSQL相关文章