Oracle誤刪表如何資料復原?
首先確定刪除資料的時間點,如果時間不正確,可能會導致找回的資料不全;
如:我刪除的時間是2018-09-28 11 :30:00到2018-09-28 11:34:00之間,因為不確定具體時間,我選擇2018-09-28 11:30:00,而且之間我沒有進行其他的(除這次刪除外)資料插入和刪除操作,所以透過這個時間點找回的資料不會存在不全的情況
然後根據時間找到刪除的資料;
select * from AT_PP_WORKINSTRUCTION as of timestamp to_timestamp('2018-09-28 11:30:00', 'yyyy-mm-dd hh24:mi:ss') where Inst_Name_s like 'GL6%';
透過這個sql:select * from 刪除資料的表名 as of timestamp to_timestamp('刪除資料之前的時間點', 'yyyy-mm-dd hh24:mi:ss') 找到你刪除先前的數據,然後加上刪除的條件,例如where Inst_Name_s like 'GL6%' 找到刪除的資料
最後將刪除的資料插入到已刪除資料的表中即可。
insert into AT_PP_WORKINSTRUCTION (select * from AT_PP_WORKINSTRUCTION as of timestamp to_timestamp('2018-09-28 11:30:00', 'yyyy-mm-dd hh24:mi:ss') where Inst_Name_s like 'GL6%')
#推薦教學:《Oracle教學》
以上是Oracle誤刪表如何資料復原?的詳細內容。更多資訊請關注PHP中文網其他相關文章!