SSIS执行sql任务参数映射
我正在尝试使用 SSIS 中的任务执行 sql 脚本。
我的脚本只是在表中插入一堆名称值对。例如 -
插入 mytable(名称,值) 价值观 (?, '值1'), (?, 'value2')
现在,我想将 SSIS 中定义的变量映射到上面语句中的参数。我尝试定义标量变量,但我猜 sql 任务不喜欢这样。哦,插入语句中的所有名称参数都解析为单个变量。
例如我想要 插入 mytable(名称,值) 价值观 ('名称1','值1'), ('name1', 'value2')
当我打开任务的“参数映射”选项卡时,它希望我单独映射每个参数,例如 -
变量名称 - 用户::名称 方向 - 输入 数据类型 - LONG 参数名称 - 0 参数大小 - -1
变量名称 - 用户::名称 方向 - 输入 数据类型 - LONG 参数名称 - 1 参数大小 - -1
如果名称有 5-10 个值,这很快就会失控并且很麻烦,并迫使我为同一名称添加多个分配。
有没有一种简单的方法可以做到这一点?
I'm trying to execute a sql script using the task in SSIS.
My script just inserts a bunch of nambe value pairs in a table. For example -
insert into mytable (name, value)
values
(?, 'value1'),
(?, 'value2')
Now, I want to map a variable defined in SSIS to be mapped to the parameters in the statement above. I tried defining a scalar variable but I guess the sql task doesn't like that. Oh and all the name parameters in the insert statement resolve to a single variable.
For example I want
insert into mytable (name, value)
values
('name1', 'value1'),
('name1', 'value2')
When I open the Parameter Mapping tab for the task, it wants me to map each parameter invidually like -
Variable Name - User::Name
Direction - Input
Data Type - LONG
Parameter Name - 0
Parameter Size - -1
Variable Name - User::Name
Direction - Input
Data Type - LONG
Parameter Name - 1
Parameter Size - -1
This quickly gets out of hand and cumbersome if have 5-10 values for a name and forces me to add multiple assignments for the same name.
Is there an easy(-ier) way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单(也是最可扩展)的方法是使用数据流任务而不是使用执行 SQL 任务。
这种方法的好处是你可以根据需要进行扩展...使用不同的标准验证每个值,修改数据,添加业务规则,丢弃不合规值(通过检查合规值的完整数量)...!
祝你今天过得愉快!
弗朗西斯科.
PS:我准备了更多的屏幕截图......但是 stackoverflow 认为我对这个网站太陌生,无法发布带有图像或两个以上链接的内容(!)哦,好吧......
The easiest (and most extensible) way, is to use a Data Flow Task instead of using an Execute SQL Task.
The good thing about this method is that you can make as extensible as you wish... validate each value with different criteria, modify the data, add business rules, discard non-compliant values (by checking the full number of complying values)... !
Have a nice day!
Francisco.
PS: I had prepared a couple more screenshots... but stackoverflow has decided that I am too new to the site to post things with images or more than two links (!) Oh well..