千家信息网

flashback闪回技术的分析

发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,这篇文章将为大家详细讲解有关flashback闪回技术的分析,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。##开启flasbbackSQL> alte
千家信息网最后更新 2025年01月21日flashback闪回技术的分析

这篇文章将为大家详细讲解有关flashback闪回技术的分析,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

##开启flasbback
SQL> alter system set db_recovery_file_dest_size=80g scope=spfile;

设置闪回区位置:

SQL> alter system set db_recovery_file_dest='/workdb/account_flashback_area' scope=spfile;

设置闪回目标为5天,以分钟为单位,每天为1440分钟:

SQL> alter system set db_flashback_retention_target=7200 scope=spfile;

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> startup mount

ORACLE instance started.

Total System Global Area 1056411648 bytes

Fixed Size 2257584 bytes

Variable Size 612371792 bytes

Database Buffers 436207616 bytes

Redo Buffers 5574656 bytes

Database mounted.

SQL> alter database flashback on; #关闭alter database flashback off;

Database altered.

SQL> alter database open;


##查询当前的scn号

SQL> select CURRENT_SCN from v$database;

CURRENT_SCN

-----------

724633

##查询当前的log sequence号

SQL> archive log list;

Database log mode Archive Mode

Automatic archival Enabled

Archive destination +ARCH1

Oldest online log sequence 30

Next log sequence to archive 32

Current log sequence 32

####通过flashback恢复数据库

startup mount

##恢复到指定的时间点

flashback database to timestamp(to_date('2010-01-01 20:00:00','YYYY-MM-DD HH24:MI:SS'));

flashback database to timestamp(sysdate-1/24); ##恢复到一小时前

##恢复到指定的SCN

flashback database to scn ********;

##恢复到某个log sequence

flashback database to sequence=**** thread=1;

alter database open resetlogs;

####通过flashback恢复表

##通过flashback恢复被删除的表,如果cyclebin已经被开启

flashback table to before drop [rename to ];

##回退到一小时前

flashback table to timestamp(system-1/24);

##多表同时回退到指定的时间点

flashback table to timestamp(system-1/24/60); ##回退到1分钟前

##回退到指定的scn

flashback table to scn ******;

##回退是启动出发起

flashback table to scn ****** enable triggers;

关于flashback闪回技术的分析就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0