我可以在 Oracle 中链接数据库链接吗?

发布于 2024-09-04 04:28:28 字数 86 浏览 5 评论 0原文

我有3个数据库。 1链接到2,2链接到3。我想从1查询3中的表。我尝试了third_db_tab@3@2,但没有成功。想知道这是否可能,如果可以,语法是什么。

I have 3 databases. 1 links to 2, 2 links to 3. I'd like to query tables in 3, from 1. I tried third_db_tab@3@2 and it did not work. Wondering if this is possible and if so, what the syntax is.

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

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

发布评论

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

评论(1

十年不长 2024-09-11 04:28:28

我认为你可以通过创建同义词来做到这一点。在数据库 2 中创建一个同义词:

CREATE SYNONYM third_db_tab for third_db_tab@3;

然后在数据库 1 中创建第二个同义词:

CREATE SYNONYM third_db_tab for third_db_tab@2;

这尚未经过测试(我现在没有运行三个数据库),但我认为 Oracle 足够聪明,可以理清同义词。

I think you can do this by creating synonyms. In database 2 create a synonym:

CREATE SYNONYM third_db_tab for third_db_tab@3;

then in database 1 create a second synonym:

CREATE SYNONYM third_db_tab for third_db_tab@2;

This is untested (I don't have three databases running right now), but I think Oracle is smart enough to untangle the synonyms.

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