The difference between Oracle's drop table and drop table purge

drop table tableName, the data in the table and the table can be recovered. The table will be put into recyclebin, through flashback table tableName to before drop, you can restore the table and the data in the table.


drop table tableName purge, the table is deleted directly and cannot be recovered.

 

 


[Java interview questions and answers] sorting recommendations

 

Published 562 original articles · praised 1543 · 1.65 million views +

Guess you like

Origin blog.csdn.net/meism5/article/details/105377153