Posted on 2009-08-07 22:07
Qzi 閱讀(203)
評論(0) 編輯 收藏 所屬分類:
oracle
恢復表數據:
alter table 表名 enable row movement;
flashback table 表名 TO TIMESTAMP to_timestamp('2009-08-07 18:34:00','yyyy-mm-dd hh24:mi:ss');
恢復存儲過程:
select text from dba_source as of timestamp to_timestamp('2009-03-06 09:45:00', 'YYYY-MM-DD HH24:MI:SS') where owner='IPRA' and name= 'P_IPACCHECK_NC' order by line;
需要sys用戶
否則不夠權限
或者登錄數據庫所在主機,使用數據庫管理者的系統(tǒng)用戶登錄