codecamp

OceanBase FLASHBACK TABLE BEFORE DROP

描述

用于从回收站中恢复被删除的表。

前置条件

回收站需要处于开启状态,可以通过​SHOW VARIABLES LIKE 'recyclebin';​来查看回收站是否开启。

obclient>SHOW VARIABLES LIKE 'recyclebin';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| recyclebin    | ON    |
+---------------+-------+
1 row in set (0.00 sec)

如果回收站处于关闭状态,可以通过​SET RECYCLEBIN = ON;​来开启。回收站中的表没有被实际删除,仍然会占用资源,如果需要彻底删除,可以执行​PURGE RECYCLEBIN;

格式

 FLASHBACK TABLE object_name TO BEFORE DROP [RENAME to db_name.table_name];

参数解释

参数

描述

object_name

指定要恢复的对象名称或表名,只有在表所在的数据库中才能执行。恢复表时,也会同步恢复和表相关的索引。

RENAME to

修改表名和表所属的库。

示例

  • 从回收站中恢复被删除的表 t。
obclient>CREATE TABLE t(id INT PRIMARY KEY, k INT);
Query OK, 0 rows affected (0.04 sec)

obclient>INSERT INTO t VALUES(1,1);
Query OK, 1 row affected (0.00 sec)

obclient>SELECT * FROM t;
+----+------+
| id | k    |
+----+------+
|  1 |    1 |
+----+------+
1 row in set (0.00 sec)

obclient>DROP TABLE t;
Query OK, 0 rows affected (0.01 sec)

obclient>SELECT * FROM t;
ORA-00942: table or view 'SYS.T' does not exist

obclient>SHOW RECYCLEBIN;
+--------------------------------+---------------+-------+----------------------------+
| OBJECT_NAME                    | ORIGINAL_NAME | TYPE  | CREATETIME                 |
+--------------------------------+---------------+-------+----------------------------+
| RECYCLE_$_2_1616038871797032 | T             | TABLE | 18-MAR-21 11.41.11.797691 AM|
+--------------------------------+---------------+-------+----------------------------+
1 row in set (0.00 sec)

obclient>FLASHBACK TABLE t TO BEFORE DROP;
Query OK, 0 rows affected (0.01 sec)

obclient>SELECT * FROM t;
+----+------+
| id | k    |
+----+------+
|  1 |    1 |
+----+------+
1 row in set (0.00 sec)


OceanBase EXPLAIN
OceanBase GRANT
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OceanBase 控制台指南

OceanBase ODC 使用指南

OceanBase Web 版 ODC

OceanBase 客户端版 ODC

OceanBase Connector/J 开发者指南

OceanBase 什么是OceanBase Connector/J

OceanBase SQL 参考(MySQL 模式)

OceanBase SQL 参考(Oracle 模式)

OceanBase 基本元素

OceanBase 数据库对象

OceanBase 函数

OceanBase 单行函数

OceanBase 返回数字的字符串函数

OceanBase 通用比较函数

OceanBase 编码解码函数

OceanBase SQL 调优指南

OceanBase 相关协议

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }