How to disable the recyclebin in Oracle version 10.1? [message #202613] |
Fri, 10 November 2006 09:48 |
dreiger
Messages: 6 Registered: April 2005 Location: Broomfield, Co
|
Junior Member |
|
|
For Oracle 10.2, Oracle documents how to disable the recyclebin:
SQL> ALTER SYSTEM SET recyclebin = OFF;
Howerver, in Oracle 10.1, the "recyclebin" parameter does not exist. Is there a different way to disable the recyclebin in version 10.1?
Thanks,
Derek
|
|
|
|
Re: How to disable the recyclebin in Oracle version 10.1? [message #202642 is a reply to message #202635] |
Fri, 10 November 2006 12:02 |
dreiger
Messages: 6 Registered: April 2005 Location: Broomfield, Co
|
Junior Member |
|
|
Thank you very much. The following command had the desired affect:
ALTER SYSTEM SET "_recyclebin"=FALSE SCOPE = BOTH;
A follow up question, if I may:
Is there a way to determine the current recyclebin configuration ... either enabled(true) or disabled(false)?
For Oracle 10.2, I can execute this:
select value from v$parameter where name = 'recyclebin';
But, for Oracle 10.1, the following query does not work:
select value from v$parameter where name = '_recyclebin';
Thanks,
Derek
|
|
|
|
|
|
Re: How to disable the recyclebin in Oracle version 10.1? [message #209639 is a reply to message #202635] |
Sat, 16 December 2006 04:42 |
M.Shakeel Azeem
Messages: 226 Registered: September 2006
|
Senior Member |
|
|
Mahesh Rajendran wrote on Fri, 10 November 2006 11:37 | try
|
if we disable recycle_bin by using above mentioned command then will it change the behavior of table drop
if we drop table
SQL>drop table test_tb;
then i think table will dropped permanently and we can't perform
SQL>flashback table to before drop
its only my assumption what u'll suggest Sir?
thanx in advance
|
|
|
|
|