您的位置:首页 > 数据库 > Oracle

oracle 恢复表数据

2015-11-19 10:59 274 查看
insert into table_name
  select *
    from table_name as of timestamp to_timestamp('20151110 11:06:00', 'yyyymmdd HH:mi:ss')
commit;

insert into v50_hjr_financing_application
  select *
    from v50_hjr_financing_application as of timestamp to_timestamp('20151110 11:06:00', 'yyyymmdd HH:mi:ss')
commit;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle 数据