4 Tables are different than the others (obvious answer).
IIRC blobs or lobs or something like that are
showing this behaviour, Solution is to create
the Tables in advance with the desired tablespace and
do an import with ignore=yes.
regards.
s.kapitza
Chuck, you should always include the full Oracle database version and
explicitly name the utility being used (since there are two different
Oracle import utilities) as well as include the version of the Oracle
cleint when the import is not done on the database server.
There is as Stefan mentioned a bug where LOB tables will not pick up
the importing touser default tablespace so if the LOB table tablespace
does not exist the table fails to import. I cannot remember the error
message. Stefan provided the solution in this case.
You should be able to use the show=y feature to extract the table DDL,
pre-create the table, and do a tables= import to bring the data.
HTH -- Mark D Powell --
Poking about on metalink, I noticed bug 7013409 (for 11g). It seems
to be saying unlimited tablespace does not apply to partitioned
tables??? Maybe I'm misreading into it.
Don't know if this has anything to do with your problem (are you
partitioning?), but that seems strange to me.
Anyways, there's also some left-field stuff on metalink about how
revoking certain grants from roles can have the effect of undoing
unlimited ts, if you've done anything like revoke resource, very odd
for a privilege you can't grant to a role.
jg
--
@home.com is bogus.
But what if someone gave me a PDA and it just sits on the shelf?
http://www.signonsandiego.com/uniontrib/20080515/news_1n15savvy.html
> Poking about on metalink, I noticed bug 7013409 (for 11g). It seems
> to be saying unlimited tablespace does not apply to partitioned
> tables??? Maybe I'm misreading into it.
Bingo. At least for one table anyway. It is partitioned. I'm still
scratching my head for the other 3.
FYI the source DB version is 9.2.0.5. The target DB is 10.2.0.3. The
utility is import, (data datapump).
Datapump would be impdp which is a 10g utility and if the export was
made on 9.2 I would expect it to be made using exp so imp should be
the utility used for the import.
Exactly how as the export made and which utility by name is being used
to perform the import?
If you grant quota and rerun the import for the failed tables what
happens?
>
> Exactly how as the export made and which utility by name is being used
> to perform the import?
Like you said, the source DB is 9i so the utility used was exp. It had
to be.
> If you grant quota and rerun the import for the failed tables what
> happens?
If I grant quota on the tablespace with the same name as they were in on
the source db, they load just fine.