在Oracle中使用回收站 [英] Using Recyclebin in Oracle

查看:61
本文介绍了在Oracle中使用回收站的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已使用以下代码在oracle中使用recyclebin实用程序...

创建表tbl1
(
一个int,
b varchar2(30)
);
插入tbl1 values(1,''Heena'');
插入tbl1 values(2,''Jackline'');
删除表tbl1;
从回收站中选择*;

上面的查询没有给我任何错误.
但是删除表后,我的回收站仍然为空.

我正在使用SQLPlus Oracle 10g ...

我什至试过
ALTER SYSTEM SET recyclebin = ON;

ALTER SYSTEM SET"_recyclebin" = true范围=两者;

上面的查询说系统已更改",但是... :(

任何人都可以在这里帮助我... ...谢谢...

I have used the following code to use the recyclebin utility in oracle...

create table tbl1
(
a int,
b varchar2(30)
);
insert into tbl1 values(1,''Heena'');
insert into tbl1 values(2,''Jackline'');
drop table tbl1;
select * from recyclebin;

The above queries dont give me any error.
But after deleting the table, my recyclebin is still empty.

I m using SQLPlus Oracle 10g...

i even tried
ALTER SYSTEM SET recyclebin=ON;

ALTER SYSTEM SET "_recyclebin" = true scope=both;

the above queries say "System altered" but... :(

Can anyone help me here ... Thnk u ...

推荐答案

而不是
select * from recyclebin;


尝试使用


try using

SHOW RECYCLEBIN;



希望这会起作用. :)



Hope this will work. :)


flashback table Tablename to before drop;


这篇关于在Oracle中使用回收站的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆