I'm currently facing the problem to migrate an existing application using Spring Data JPA and Hibernate from an Oracle Database to EXASOL. This should in general not be a big problem but it seems like that it is not possible use Hibernate in combination with EXASOL.
My current application.properties file:
#db config
db.driver=com.exasol.jdbc.EXADriver
db.url=jdbc:exa:192.168.1.11..17:8563
db.username=foobar
db.password=foobar
#hibernate config
hibernate.dialect=???
hibernate.hbm2ddl.auto=validate
hibernate.ejb.naming_strategy=org.hibernate.cfg.ImprovedNamingStrategy
hibernate.show_sql=true
hibernate.format_sql=true
The question is which hibernate.dialect to use?