Collections:
Turn On and Off Recycle Bin for the Session in Oracle
How To Turn On or Off Recycle Bin for the Session in Oracle?
✍: FYIcenter.com
If you want to control the recycle bin feature in your own session, you can use the ALTER SESSION statement to turn on or off. Here is an example SQL script:
SQL> connect HR/fyicenter
Connected.
SQL> SELECT COUNT(*) FROM recyclebin;
COUNT(*)
----------
0
SQL> ALTER SESSION SET recyclebin = off;
Session altered.
SQL> CREATE TABLE emp_dept_90
2 AS SELECT * FROM employees WHERE department_id=90;
Table created.
SQL> DROP TABLE emp_dept_90;
Table dropped.
SQL> SELECT COUNT(*) FROM recyclebin;
COUNT(*)
----------
0
Warning: Turning off the recycle bin feature in your session will give yourself hard times on recovering dropped tables.
⇒ Show All Tables in Your Schema in Oracle
⇐ Empty Your Recycle Bin in Oracle
2019-05-10, 3236🔥, 0💬
Popular Posts:
How to connect SQL Server Management Studio Express to SQL Server 2005 Express in SQL Server? Once y...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...