select * from sys.slog$
SELECT SOWNER, VNAME, MOWNER, MASTER, to_char(SNAPTIME,'yyyy-mm-dd hh24:mi:ss') FROM SYS.SNAP_REFTIME$;
insert into sys.slog$ values('DHSH','USER_BASIC',NULL,171,NULL,to_date('2014-01-07 15:44:18','yyyy-mm-dd hh24:mi:ss'),null,null);
commit;
四、附录
1、MOS方案
Diagnosing ORA-12034 Materialized View Log Younger Than Last Refresh (文档 ID 204127.1)
(1)Error Definition and Description
Error Definition
Oracle 8i and below: ORA-12034: "snapshot log on "%s"."%s" younger than last refresh"
Oracle 9i and above: ORA-12034: "materialized view log on "%s"."%s" younger than last refresh"
Cause: The materialized view log was younger than the last refresh.
Action: A complete refresh is required before the next fast refresh.
Note: A complete refresh can be done using the command:
execute dbms_mview.refresh('"CORP"."NM_SV_RANGE"','C');
2、全量刷新物化视图