不同格式的新Excel文件想要使用ssis将数据导入到sql表
这是我的文件,请告诉我如何插入日期和价格 将单元格 C4
和 C21
放入表格中 请帮忙 我获取了 excel 源并将 OpenRowSet属性设置为
SHEET$C4:C21` 但这只给了我一列和无效数据 请帮忙。
this is my file please tell me how can I insert date and price
cell C4
and C21
into table
please help
I took excel source and sets
OpenRowSetproperty to
SHEET$C4:C21`
but which is giving me only one column and invalid data also
please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用包中的脚本任务来实现此目的。但请考虑使用 SSRS。我认为这就是 SSRS 的用途。
通过 SSRS,您可以使用 BIDS 制作报告,也可以在(例如)ASP.NET 应用程序内使用 Visual Studio 创建本地报告。使用 ASP.NET ReportViewer 组件,您可以可视化报告并将其导出到 Excel。如果需要的话,您甚至可以以编程方式导出。
这里是如何将 SSRS 与 ASP.NET ReportViewer 一起使用的教程。 另一个关于如何使用导出功能。
You may achieve this using a script task in your package. But consider using SSRS instead. I think this is what SSRS made for.
With SSRS you can make a report using BIDS or also you can create a local report with Visual Studio inside of an (e.g.) ASP.NET application. With the ASP.NET ReportViewer component you can visualize your report and export it to Excel as well. You can even export programmatically if you should do this.
Here is a tutorial how to use SSRS together with ASP.NET ReportViewer. Another turorial for how to use exporting functionality.