如何创建 ssis 作业将表导出到文件
我是 ssis 的新手,
我有一个像 ↓ 这样的表
no tablename
1 table1
2 table2
3 table3
,我想要使用 ssis 做的是....
1,创建一个名为 yyyyMMddhhmmss 的文件夹
2,从上面的表中获取表名
3,将所有表导出到带有它们的文件自己的名字。
感谢您的帮助。
Im new to ssis ,
I have a table like ↓
no tablename
1 table1
2 table2
3 table3
what I want use ssis to do is ....
1, create a folder as name yyyyMMddhhmmss
2, fetch the table names from above table
3, export all the tables to files with their own name.
thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用的基本模式是迭代所有表并调用 BCP< /a> 反对他们。
大致布局如下
The basic pattern I would use would be to iterate through all the tables and invoke BCP against them.
Rough layout would be the following