drop table without purge
Vladimer, April 28, 2026 - 7:31 am UTC
Thank you for your answer. This is exactly the behavior I observed in my experiment, but I could not properly explain why it was happening
I think the main reason for my confusion was this sentence from the documentation:
"Unless you specify the PURGE clause, the DROP TABLE statement does not result in space being released back to the tablespace for use by other objects, and the space continues to count toward the user's space quota"
Well, at the same time I watched how she freed herself automatically, as you said.
I interpreted this statement too literally, assuming that the space could not be reused by other objects at all while the segment still existed in the recycle bin
Your explanation makes it much clearer: the segment still exists and still counts toward the user’s quota, but the space is also reclaimable by Oracle if it is needed for new objects
Thank you very much for the explanation. I hope my question was not too silly compared to the others