Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> ORA-02070 error!
I am trying to create a stmt to extract information of tables existing in database A, which are also existing in database B with new columns. I am using db_link to achieve this. This stmt will basically generate another script for adding the new columns to database A.
It constantly gives me the ORA-02070. Any idea?
stmt A
from user_tab_columns)
*
stmt B: Even this gives the same error
decode(data_scale,'0',null,','||data_scale)||')', 'DATE',data_type, 'VARCHAR2',data_type||'('||data_length||')', 'CHAR',data_type||'('||data_length||')',null) colnam,data_default
(select table_name, column_name from user_tab_columns) and table_name not in (select view_name from user_views_at_rs20);
ERROR at line 11:
ORA-02070: database AM_RDEK does not support operator USERENV in this context
rgds
amar
Received on Wed Nov 21 2001 - 01:15:40 CST
![]() |
![]() |