Camunda not executing DDL queries required for initial setup
Oracle version: 19.12
Camunda version: 7.16.0
If I try to connect to h2 it’s able to create all tables, but when connecting to the oracle database it throws errors stating that the table not found.
Can anyone tell why it might not be executing DDL queries
Actions that are taken so far:
tried different values of schema-update, provided database type as an oracle as well. still, issue remains the same.
Any help here would be great
thank you
@teja_polisetty Have you created an empty schema before running your application? Given scripts will only create tables and indexes. Are you using springboot setup?
HI @aravindhrs
yes I am using spring-boot
and an empty schema already created with all the required access.
But tables are not getting created - basically, I don’t see queries running, but the same queries run and create tables when I connect to h2 database
i deleted the schema and created again - it worked by doing this
but now I am getting : javax.servlet.ServletException: Could not read security filter config file ‘/securityFilterRules.json’: no such resource in servlet context
I am not sure what security filter it is looking for, any clue on this?
due to version compatibility got the servlet exception, now it’s working.after going through compatibility docs
Thank you