I am trying to import specific tables from an oracle dump, in order to avoid any parent key not found exception, I want to follow a certain order to import the tables. For example if tables X depends on tables A and B, I want to import A and B first:
imp user/pass@dbName tables=(A,B,X) rows=y ignore=Y
Will this command guarantee that A and B are imported before X?
No, the order specified on imp does not guarantee the order in which the tables are imported, it is done in the order in which they are exported.