以下示例不起作用,我只是想展示我正在尝试做的事情。
给定表:
-- this table is located at the CDB
create table t1 (tab_name varchar2(35))
/
-- this proc is located at the CDB
Create or replace procedure FindTables(vPdb in varchar2, vOwner in varchar2)
BEGIN
insert into t1(tab_name) select TABLE_NAME from ALL_TABLES@vPdb where OWNER=vOwner;
END;
/
有没有办法创建一个临时数据库链接或类似的东西?或任何其他方式?
编辑
我还需要用户表的解决方案。