I just created a batch job using Spring Batch framework, but I don\'t have Database privileges to run CREATE SQL. When I try to run the batch job I hit the error while the f
Spring Batch required following tables to run job
If you are using h2 db then it will create all required table by default
When you start using Mysql or any other database you need to add follwing properties into application.properties
spring.batch.initialize-schema=always