通过 dblink 的表空间

发布于 2024-10-18 05:17:34 字数 57 浏览 1 评论 0原文

如何使用 dblinks 创建表空间? 我们有什么方法可以以这种方式创建表空间吗? 先决条件是什么。

How can one create an tablespace using dblinks?
Is there any way how do we create a tablespace in this fashion?
what are the pre-requisities.

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

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

发布评论

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

评论(1

錯遇了你 2024-10-25 05:17:34

您不能、也不应该通过数据库链接执行 DDL。 DDL 执行隐式提交,并且不允许在远程站点上提交。

ORA-02021: DDL operations are not allowed on a remote database

您可以使用作业队列 - 以便在远程系统上执行事务,例如:

dbms_job.submit@remote( l_job, 'execute immediate ''create table t ( x int )''' ); 
commit; 

询问汤姆

You can not, you should not perform DDL over a database link. DDL does an implicit commit and a commit on the remote site is not allowed.

ORA-02021: DDL operations are not allowed on a remote database

You can use the job queues - so that a transaction is performed on the remote system, eg:

dbms_job.submit@remote( l_job, 'execute immediate ''create table t ( x int )''' ); 
commit; 

Ask Tom

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