使用 SSIS 将多值数据库导入 SQL 中
我想知道是否可以使用 SSIS 将数据从多值数据库文件传输到 SQL Server。
我在网上唯一能找到的就是使用 bluefinity 工具来实现这一点。
谢谢 西蒙娜
I would like to know if it is possible to Transfer Data into SQL Server from a multi value database file using SSIS.
The only thing that I could find online was using a bluefinity tool to achieve this.
Thanks
Simona
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经在 Universe 中完成了此操作,但 Universe 有一个 ODBC 驱动程序,允许将数据瓶视为表格。几乎像 SQL 视图。
SSIS 可以从几乎任何可以获取 .Net、ODBC 或 OLE DB 驱动程序的内容进行导入。不过,必须有某种方式从外部程序与数据库进行对话。
I have done this from Universe, but Universe has an ODBC driver that allows the datavase to be viewed as if they were tables. Almost like SQL views.
SSIS can import from almost anything that you can get either a .Net, ODBC, or OLE DB driver for. There has to be someway to talk to the DB from an extrnal program, though.
我怀疑你没有驱动程序(ODBC、OLEDB、.NET)。因此,您可以使用 C# 脚本(甚至来自 SSIS)并将数据提取到平面文件,然后提取到 SQL Server 或直接提取到 SQL Server。
I suspect that you has no driver (ODBC,OLEDB,.NET). So you can use C# script (even from SSIS) and extract data to flat file and then to SQL Server or do it directly to SQL Server.