oracle11g的闪回技术-闪回表-时间戳

--数据库闪回表
--1创建表(登录模式system)
CREATE table dept2 as select * from dept;--此语句如果加上where条件可用于工作中数据的临时备份
select * from dept2;--查询新建表信息

oracle11g的闪回技术-闪回表-时间戳_第1张图片
--进入sql>set time on 通过时间点闪回  记录弹出的时间点:类似linux命令行,可以设置带时间的如图所示,方便记录dml语句的操作时间戳,方便利用闪回时间戳

oracle11g的闪回技术-闪回表-时间戳_第2张图片


--2删除数据
DELETE FROM dept2 where deptno=12;
commit;

oracle11g的闪回技术-闪回表-时间戳_第3张图片
rollback;--通过回滚恢复不了数据了

oracle11g的闪回技术-闪回表-时间戳_第4张图片
--3利用闪回表恢复-需要启动行移动功能,否则无法闪回
alter table dept2 enable row movement;
flashback table dept2 to timestamp TO_TIMESTAMP('2024-01-17 10:03:41','yyyy-mm-dd hh24:mi:ss');--可以看到执行后,之前删除的记录又回来了。

oracle11g的闪回技术-闪回表-时间戳_第5张图片
--查看当前系统时间格式,
select sysdate from dual;

oracle11g的闪回技术-闪回表-时间戳_第6张图片
--通过下面可以修改会话的时间格式
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';

注意:

本案例操作过程中需要注意的就是做删除操作的时候,在sql>下执行,不要在客户端执行,开始时间点选择了在建表之前,报错提示如下:时间戳是从这里获取的参数

oracle11g的闪回技术-闪回表-时间戳_第7张图片

[SQL]flashback table dept2 to timestamp TO_TIMESTAMP('2023-01-17 10:03:41','yyyy-mm-dd hh24:mi:ss')
[Err] ORA-08180: no snapshot found based on specified time

oracle11g的闪回技术-闪回表-时间戳_第8张图片

后来修改了正确的时间戳就没有问题了

你可能感兴趣的:(oracle,数据库,sql)