Skip to the main content.
Downloads Thriftly Login
Downloads Thriftly Login
Group 762

Migrate and run DataFlex applications with Oracle, MS SQL Server, PostgreSQL, MySQL &  MariaDB.

flex2Crystal

Stuck in Crystal XI?  Upgrade and use the latest versions of Crystal Reports with DataFlex applications. 

BTR2SQL

Seamlessly convert from Btrieve transactional database to PostgreSQL, Oracle, and MS SQL Server.

thriftly-1

Quickly build multi-protocol web services with the same API. Supports JSON-RPC, REST, SOAP,  Thrift, and gRPC.

 Group 671-1

 

Why Mertech?

1 min read

Issues With Oracle's Recyclebin

Since 10g Oracle introduced a new feature known as the Database Recyclebin. As an Operative System, recyclebin brings the ability to restore tables (files in OS) that are dropped (deleted).


How Does Oracle's Recyclebin Work?

If you drop a table in Oracle and the recyclebin is enabled then the table won't be deleted it will be renamed to a special name in the recyclebin object:

First, clean the recyclebin so you can see the new items in there:

PURGE recyclebin;
Drop the table:

DROP TABLE test;
To see it in the recyclebin type:

SELECT * FROM recyclebin;
You will see an output with all the objects in table test that were renamed so they can be restored.


To avoid the recyclebin storage you can do two things:


1. Purge your table when you DROP it:

DROP TABLE
test PURGE;
2. Disable the recyclebin during your oracle session:

ALTER SESSION SET recyclebin = OFF;


Issues With Recyclebin

At the time I'm writing this article, Oracle 11g is the latest Oracle version, the current version is:

Oracle Database 11g Release 1 (11.1.0.6.0)

We are getting slowdowns with 11g and not with 10g, a 100+ columns table drop operation when the recyclebin is on is from 8~10 seconds. That very same operation with PURGE(or when the recyclebin is set OFF) does not take even a second to finish.


For more information about Oracle's recyclebin visit: http://www.orafaq.com/node/968


Why Migrate from Btrieve to PostgreSQL and other Relational Databases?

Why Migrate from Btrieve to PostgreSQL and other Relational Databases?

Introduction Many independent software vendors (ISV) and corporate users still rely on applications that use a category of database collective called...

Read More
Four Challenges in Converting COBOL Applications from ISAM Databases to Relational Databases

Four Challenges in Converting COBOL Applications from ISAM Databases to Relational Databases

COBOL applications are the foundation of numerous essential business functions, especially within the banking, insurance, and government sectors....

Read More
Application Modernization 101: Ultimate Guide to Digital Transformation

Application Modernization 101: Ultimate Guide to Digital Transformation

Imagine breaking free from the constraints of old, monolithic systems and embracing the agility and innovation of cloud-based solutions.

Read More