|
|
|
Re: Indexes and tables import to different tablespaces. [message #439847 is a reply to message #439709] |
Tue, 19 January 2010 12:36 |
joy_division
Messages: 4963 Registered: February 2005 Location: East Coast USA
|
Senior Member |
|
|
If you precreate the indexes (of course you would have to precreate the tables first), then as the import runs, it will be rebuilding the index on the fly for every row, which cane make the import at least 10 times longer than if done the traditional way where the indexes are build at the end.
I would just do an ALTER TABLE MOVE TABLESPACE and command.
Is there a legitimate reason that you need to do this? Separating indexes from tables is an ancient custom that is no longer necessary.
|
|
|