dblink - Scheduling a job in oracle to drop and create table -
I am trying to delete and create a table using a scheduled job. How do you do this?
drop table registration; You are probably looking to obtain physically, select the table entry * Registration_mv @ D3PROD_KMDW to
View instead of table? Create physical visual registration in the form of registration * MV @ d3prod_kmdw
as registered * registration and then refresh it in the job
dbms_mview.refresh ('Registration'); This is better than leaving and making the table because PL / SQL objects will be invalid after leaving the table. With Mview it will be silent and without loss
Comments
Post a Comment