what is environment variable configuration in ssis and what registry entry configuration in ssis

泄露秘密 提交于 2019-12-06 05:54:15

问题


I am learning SSIS. Now I'm stuck with configurations. I have done xml, parent package and SQL configuration but I am not understanding what is Environment Variable configuration and what is registry entry configuration in SSIS.


回答1:


The Environment Variable configuration means that you want to configure your variable(s) in the SSIS Package to take the value from an Environment Variable. Environment Variables are set at the Computer / Server / System level.

For example, you could store the connection string for a database in an environment variable and configure all your package that run on that server, and use that database, to take the connection string value from that variable.

Same with Registry Configuration setting, where you have Registry keys that contain your SSIS variable values.

See the following MSDN Article for detailed explanation on all the configuration types.

Defining a Configuration Approach for Integration Services Packages

I know SSIS tends to be a little confusing when you get started :) I went through the same issues.



来源:https://stackoverflow.com/questions/39888087/what-is-environment-variable-configuration-in-ssis-and-what-registry-entry-confi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!