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, 2128🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
What Is SQL*Plus in Oracle? SQL*Plus is an interactive and batch query tool that is installed with e...