1. 程式人生 > >oracle 找回被覆蓋的存儲過程

oracle 找回被覆蓋的存儲過程

create per source reat table emp ora where nbsp

登錄到sys賬戶下

1、TO_TIMESTAMP(‘2014-05-04 14:33:00‘, ‘YYYY-MM-DD HH24:MI:SS‘) 刪除前的日期

2、owner 表空調

3、Name 存儲過程名,要大寫。

create table p_temp as
select *
from dba_source as of timestamp TO_TIMESTAMP(‘2014-05-04 14:33:00‘, ‘YYYY-MM-DD HH24:MI:SS‘)
where TYPE = ‘PROCEDURE‘
And owner = ‘TEST‘
And Name = ‘GG_TEST‘;


select text

from p_temp
where name like upper(‘%GG_TEST%‘)
and owner = ‘TEST‘

order by line;

oracle 找回被覆蓋的存儲過程