Hello FME experts,
I create an ORA table with in the format parameters:
- spatial column GEOMETRIE
- create spatial Index YES
- drop existing Index YES
- spatial index name TST_IDX
I also need an index on the attribute ID so I use the SQL statement to Excecute after Translation:
- CREATE INDEX table1_i ON table1 (ID)
This works fine.
Question: How can I create an other index on a different table also with a spatial index.
I put an extra line into the SQL statement as follows:
CREATE INDEX table1_i ON table1 (ID)
CREATE INDEX table2_i ON table 2 (ID)
I have used seperations between the lines (; , ' ') but nothing seems to work
error was `ORA-02158:
....How can I but indexes on different tables after I created an ORA-table?