Stop camunda create oracle Table/schema on startup

Hi Camunda Community,
I have been trying to find a way to disable camunda from creating Tables every time it starts. I am using oracle DB. I know that I have to set isAutoSchemaUpdate property --> to false in standalone.xml. Where whould I put that in springboot applicaiton, under resources, or src folder ? I am running springboot application with tomcat. I do not have wildfly or Jboss. Is there a workaround ?? Thank you in advance…

@mattdon111 For springboot application, you can add a below property in the file /src/main/resources/application.yml

camunda:
  bpm:
    database:
      schema-update: false

Refer the docs for spring-boot-integration-configuration-camunda-engine-properties.

1 Like