To create indexes on temporary table, PL/SQL Developer will apply the statement like this:
-- Create/Recreate indexes
create index RISKDATA.idx1 on RISKDATA.T_NOR_STOCKACCOUNT(stock_account);
However, if you export this temporary table, you may see the statement like this:
-- Create table...