Oracle

Drop table with PURGE option

Figo Kim 2006. 12. 3. 17:47
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

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 oracle server immediately removes the table and the space the table is holding from a database.

Examples)

DROP TABLE dept80 PURGE;

* You cannot roll back a DROP TABLE statement with the PURGE clause, nor can you recover the table if you drop it with the PURGE clause.

** This feature was not available in the earlier release. (ONLY for Oracle 10g)

'Oracle' 카테고리의 다른 글

Flashback Features  (0) 2006.12.04
Drop table with PURGE option  (0) 2006.12.03
Function-Based Indexes  (0) 2006.12.03
INDEX  (0) 2006.12.03
INDEX  (0) 2006.12.03