使用SQL Server 15.0.18930.0到达CACHE' SQL数据库通过ODBC

发布于 2025-01-21 03:22:27 字数 443 浏览 1 评论 0原文

这一定很简单,但我找不到文档。我有一个到 Intersystems Cache 数据库的 ODBC 连接,该连接在 MS Access 中工作正常,但我不知道如何在 SQL Server (15.0.18930.0) 中执行相同的操作。

在Access中,我这样做了:空白桌面数据库,创建,外部数据选项卡,ODBC数据库,链接到数据源,(选择数据源)-->机器数据源 -->单击我们已经创建的 ODBC 数据源。然后它给了我一个要链接到的表格列表,我们就完成了。

数据源是系统 DSN,具有各种字段和连接字符串,例如

DRIVER={InterSystems ODBC35};SERVER=xxxx;PORT=xxx;DATABASE=xxx;UID=xxx;PWD=xxx;  

How is this did with SQL Server?

谢谢!

This must be simple but I can't find the documentation. I have an ODBC connection to an Intersystems Cache' database that works fine in MS Access, but I can't see how to do the same in SQL Server (15.0.18930.0).

In Access, I did this: Blank Desktop Database, Create, External Data tab, ODBC Database, Link to the data source, (Select Data Source) --> Machine Data Source --> click on ODBC data source we already created. Then it gives me a list of tables to link to, and we're done.

The data source was System DSN, with various fields and a connection string like

DRIVER={InterSystems ODBC35};SERVER=xxxx;PORT=xxx;DATABASE=xxx;UID=xxx;PWD=xxx;  

How is this done with SQL Server?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羞稚 2025-01-28 03:22:27

如何使用 SQL Server 完成此操作?

对于 SQL Server,请编写 使用 ODBC 驱动程序的 SSIS 包。请注意,如果 ODBC 驱动程序是 32 位,您可能需要在 32 位模式下运行该包。然后使用该包加载 SQL Server 表,或使用 SSIS 数据流目标,使 SQL Server 能够动态运行并从 SSIS 包读取数据。

How is this done with SQL Server?

For SQL Server, write an SSIS package that uses the ODBC driver. Note that you may need to run the package in 32bit mode if the ODBC driver is 32bit. Then use that package to load a SQL Server table, or use an SSIS Data Streaming Destination to enable the SQL Server to dynamically run and read data from the SSIS package.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文