MYSQL - 创建镜像通过 ODBC 连接的 Oracle 表的视图/表

发布于 2024-12-05 12:18:32 字数 120 浏览 2 评论 0原文

有谁知道是否可以在 MYSQL 中创建数据库、表或视图,以镜像或复制可通过 ODBC 连接访问的 Oracle DB 中的表。

我基本上希望能够从 MYSQL 数据库中引用 Oracle 数据库中的最新客户表。

Does anyone know if its possible to create a DB, Table or View in MYSQL which mirrors or replicates a table from an Oracle DB accessable through an ODBC connection.

I basically want to be able to reference say an up to date table of customers in the Oracle DB but from within the MYSQL DB.

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

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

发布评论

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

评论(1

椒妓 2024-12-12 12:18:32

我想如果你能让你的 Oracle 表成为 mySQL 中的同义词,这样的事情可能会起作用。 (虽然我对 mySQL 语法不太熟悉)

CREATE TABLE tablename AS (SELECT * FROM othertable);

I'm thinking something like this might work if you can make your Oracle table a synonym in mySQL. (I'm not too familiar with mySQL syntax though)

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