0

我是新手SSIS,我想从 sql 表生成一个 excel 文件。

sql表:我的数据

Id    date       value
1     2013-02-2  236823
2     2013-02-3  185454

现在我需要生成一个excel文件,它会给我一个像这样的输入

只有datevalue

我怎样才能生成那个excel文件?

请给我任何线程这将是很大的帮助。

我试着做开始data flow task

在里面我已经ole db source写了sql查询select date ,value from mydata

然后补充Excel destination

但它在 excel 目标中给了我一个错误:

external table is not in expected format
4

1 回答 1

1

我的朋友,到目前为止,您尝试过什么?这是一个简单的点击-点击-点击的东西。下一次,请分享你的努力。这是指导:

1. Place a DFT on the Control Flow surface
2. Double-click on the DFT to enter into the Data Flow surface
3. Place an OLE DB Source. Double-click on it. Click on New... button and create a new OLE DB connection manager
4. Data access mode: Table or view. Select your table
5. Click on the columns. Select the fields you want.
6. Now place an Excel Destination. Connect it to the OLE DB Source.
7. Double-click and click on New... button. Give the Excel file path where you want to dump the data.
8. Click on New.. Some warning will appear. Accept it.
9. Select the Name of the Excel sheet from the drop down.
10. Run the package.

这是普通的香草解决方案。了解基础知识后,完善您的解决方案。例如,考虑通过变量设置连接。

祝你好运!

于 2013-03-20T16:51:22.050 回答