stephenwales
MIS
Hello,
I've got a materialized view that's suddenly causing me grief with an ORA-01775 on the refresh.
The entry in USER_JOBS looks like this:
There is one synonym in the target database for a user defining the table name MSFEDT_PRIOR_YEAR to reference:
And in the source database there's also only the one synonym:
My confusion level here is high. I found nothing useful on Metalink - anyone here able to point me to what I'm missing?
Thanks
Steve
I've got a materialized view that's suddenly causing me grief with an ORA-01775 on the refresh.
The entry in USER_JOBS looks like this:
Code:
SQL> l
1* select * from user_jobs where job = 5596
SQL> /
JOB LOG_USER PRIV_USER
---------- ------------------------------ ------------------------------
SCHEMA_USER LAST_DATE LAST_SEC THIS_DATE THIS_SEC NEXT_DATE
------------------------------ --------- -------- --------- -------- ---------
NEXT_SEC TOTAL_TIME B
-------- ---------- -
INTERVAL
--------------------------------------------------------------------------------
FAILURES
----------
WHAT
--------------------------------------------------------------------------------
NLS_ENV
--------------------------------------------------------------------------------
MISC_ENV INSTANCE
---------------------------------------------------------------- ----------
5596 ELLIPSE ELLIPSE
ELLIPSE 05-APR-05 11:16:17 01-JAN-00
00:00:00 1391 Y
sysdate + 1/48
19
dbms_refresh.refresh('"ELLIPSE"."MSFEDT_PRIOR_YEAR"');
NLS_LANGUAGE='AMERICAN' NLS_TERRITORY='AMERICA' NLS_CURRENCY='$' NLS_ISO_CURRENC
Y='AMERICA' NLS_NUMERIC_CHARACTERS='.,' NLS_DATE_FORMAT='DD-MON-RR' NLS_DATE_LAN
GUAGE='AMERICAN' NLS_SORT='BINARY'
0102000200000000 0
SQL>
There is one synonym in the target database for a user defining the table name MSFEDT_PRIOR_YEAR to reference:
Code:
SQL> select * from dba_synonyms where table_name = 'MSFEDT_PRIOR_YEAR';
OWNER SYNONYM_NAME
------------------------------ ------------------------------
TABLE_OWNER TABLE_NAME
------------------------------ ------------------------------
DB_LINK
--------------------------------------------------------------------------------
USERNAME MSFEDT_PRIOR_YEAR
ELLIPSE MSFEDT_PRIOR_YEAR
And in the source database there's also only the one synonym:
Code:
SQL> select * from dba_synonyms where table_name = 'MSFEDT_PRIOR_YEAR';
OWNER SYNONYM_NAME
------------------------------ ------------------------------
TABLE_OWNER TABLE_NAME
------------------------------ ------------------------------
DB_LINK
--------------------------------------------------------------------------------
USERNAME MSFEDT_PRIOR_YEAR
ELLIPSE MSFEDT_PRIOR_YEAR
My confusion level here is high. I found nothing useful on Metalink - anyone here able to point me to what I'm missing?
Thanks
Steve