我正试图导出11号甲骨文中的数据
exp user/password file=dump.dmp tables = (table1)
通过 sqlplus 。
我发现以下错误:
About to export specified tables via Conventional Path ...
EXP-00011: USER.TABLE1 does not exist
Export terminated successfully with warnings.
但当我检查谁是这张桌子的主人时:
SELECT owner, table_name from dba_tables where table_name = TABLE1 ;
我知道 Table1
的所有人是 USER
我该如何出口这张桌子?
UPDATE
Actually, i found a solution. I hope it will help someone else. Since version 11g Oracle has introduced new feature that is called deferred segment creation. Thus oracle doesn t create table segment if there are now rows in it. So i recreated my table with option segment creation immediate