Drop table with PURGE option
When you drop a table, the Oracle server doesn't actually remove the table. Instead, it places the table into the recycle bin of the Oracle server, which means the space that the dropped table was holding still exists and the table can be recovered from the recycle bin by using FLASHBACK TABLE statement. However, if you use this option, PURGE, with a sql statement when you drop a table, the orac..