通过 dblink 的表空间
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能、也不应该通过数据库链接执行 DDL。 DDL 执行隐式提交,并且不允许在远程站点上提交。
您可以使用作业队列 - 以便在远程系统上执行事务,例如:
询问汤姆
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.
You can use the job queues - so that a transaction is performed on the remote system, eg:
Ask Tom