|
Oracle 如是说:是否可行呢
Hi,
As you have not mentioned about group, I presume that it is not part of replication group and it
is simple table-v/s-snapshot configuration.
In such setup, the refresh is done thru the dbms job.
Logon to the snapshot database and query DBA_JOBS :
select * from dba_jobs.
Findout job# for the refrersh job. "WHAT" column shows following value for refresh job:
dbms_refresh.refresh('"<schema>"."<snapshot_name>"');
Break th job using :
execute dbms_job.broken(<job#>,TRUE);
After performing deletion, when your network allows refresh, run the job manually once.
This will start refresh job again.
execute dbms_job.broken(<job#> ;
[Note]
This means that you are stopping the refresh activity temporarily. When
the job starts next time, all the refresh will occur at snapshot.
Thanks,
Janak
@CUS |
|