By going to: http://localhost:8080/WebAPI/ddl/results?dialect=oracle&schema=OMOP_COHORT&vocabSchema=OMOP&tempSchema=OMOP_TEMP=initConceptHierarchy=true
We get the Oracle scripts to execute to create new tables in our OMOP_COHORT and OMOP_TEMP schema
We tried to execute all the commands in Oracle SQL developer but we got an error because of the BEGIN-END syntax. We needed to replace all
```sql
END;
```
by
```sql
END;-- newline and /
/
```
Then, we needed to split the commands concerning the OMOP_COHORT schema and the OMOP_TEMP schema.
Excecuting the script was very long (multiple hours).