You can create an enterprise industry model from an exported Oracle DMP file. Use the
Dump-Import dialog box to specify the default tablespace setting for the newly created Oracle schema. For instance, when importing TB_WA, a new user is created like this:
create user TB_WA identified by 'avs' default tablespace [value from combo] temporary tablespace [value from combo];
An Oracle dump file contains the tables plus the name of the tablespace this table comes from.
During import, Oracle applies the following logic:
- If the target database contains a tablespace with the same name as in the original database, the table is placed in that tablespace. You cannot change the target tablespace.
- If the target database does not contain a tablespace with the same name, the table is placed in the schema's default tablespace (specified during schema creation with the value from the Dump-Import dialog box).