What are the BIN$… tables in Oracle's ALL_TAB_COLUMNS table?

后端 未结 1 1556
再見小時候
再見小時候 2020-12-06 10:07

When I query ALL_TAB_COLUMNS in Oracle, I see tables called

BIN$frKctA83wMPgQEOSh0Az+A==$0
BIN$frKctA8cwMPgQEOSh0Az+A==$0
BIN$frQ1pdU2TgXgQEOSh0         


        
相关标签:
1条回答
  • 2020-12-06 10:43

    Since version 10g, dropped tables (also dropped objects in general) are put in the recycle bin and can be restored easily. The names you see are tables in the recycle bin.

    You can bypass the recycle bin by adding the PURGE keyword in your DROP statements.

    You will find additional information in the Administrator's Guide Documentation.

    0 讨论(0)
提交回复
热议问题