用dblink执行DDL

Posted jiangqingfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用dblink执行DDL相关的知识,希望对你有一定的参考价值。

对于select,update,insert,delete这些dml,可这样使用

insert into [email protected]_rac_hainan(id,color,is_can_water)
select 1 id,‘绿色‘ color,1 is_can_water from dual ;

commit;

但对于create,truncate,drop等DDL,需这样使用

declare
begin
[email protected]_rac_hainan(‘
create table hnfpy2.cs_thz_lv(
id number(10),
color varchar2(100),
is_can_water number(1)
)
‘);
commit;
end;
/

declare
begin
[email protected]_rac_hainan(‘truncate table hnfpy2.cs_thz_qi‘);
commit;
end;
/
declare
begin
[email protected]_rac_hainan(‘drop table hnfpy2.cs_thz_lv‘);
commit;
end;
/

 

以上是关于用dblink执行DDL的主要内容,如果未能解决你的问题,请参考以下文章

本地oracle里写了个存储过程,需要去取用别的服务器上sqlserver数据库里的数据,用dblink能否实现

如何解决dblink过多的问题

oracle数据库“dblink”怎么用?

请问两个oracle数据库,用insert into 学生 select * from 学生 @dblink。发现学生表里面的有一个字段。

通过oracle dblink,怎么执行远程数据库的存储过程。或者说可以执行吗?怎么弄?

oracle sys下执行私有dblink删除