- UID
- 21335783
- 阅读权限
- 20
- 帖子
- 23
- 精华贴数
- 0
- 技术排名
- 38382
- 技术积分
- 50
- 社区排名
- 2159770
- 社区积分
- 0
- 注册时间
- 2009-4-8
- 精华贴数
- 0
- 技术积分
- 50
- 社区积分
- 0
- 注册时间
- 2009-4-8
- 论坛徽章:
- 0
|
发表于 2009-6-25 19:47:21
|显示全部楼层
回复 #5 我上面有人 的帖子
Looks like it is by design, flashback table does not work when DDL is used (truncate is a DDL as we know).
<quoto>
Flashback Table is extremely useful when a user accidentally inserts, deletes, or updates the wrong rows in a table. It provides a way for users to easily and quickly recover a table to a previous point in time.
However, if the following DDL commands are issued, the flashback table command does not work:
- ALTER TABLE ... DROP COLUMN
- ALTER TABLE ... DROP PARTITION
- CREATE CLUSTER
- TRUNCATE TABLE
- ALTER TABLE ... MOVE
</quoto>
When a table is dropped, it goes to the recyclebin, then flashback table .. before drop can pick it up from the erecyclebin |
|