各位大神请看:
远程库+视图(字段名称更改的)+递归查询,这样做会出现异常吗?
如下:
A数据库中(用户abe),新建的一张表
create table  t_item(
item_cd number(9) primary key,
parent_item_cd number(9) references t_item(item_cd)
);
在B数据库中(用户abe),建一个远程链路   Link_DB_A(指向A库)
建一个视图:
create or reprece view v_t_item
as 
select item_cd as node_id,parent_item_cd as parent_id from abe.t_item@Link_DB_A;在B数据库abe用户中,使用递归查询时出现异常:
select a.*,level as lvl from v_t_item  a connect by prior node_id = parent_id start with parent_id = 1;ORA-00904: "A6 ". "node_id":无效的标识符 
ORA-02063:紧接着line(源于Link_DB_A)。
各位大神有没有解决方案呢?ORA-00904ORA-02063递归oracle远程链路