...
- Adjust the SQL Server dialect setting in your hibernate configuration file to SQL Server 2012
<property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
should be<property name="hibernate.dialect">org.hibernate.dialect.SQLServer2012Dialect</property>
- The resolution has to be applied to
./resources/joc/jobscheduler.hibernate.cfg.xml
./resources/joc/reporting.hibernate.cfg.xml
- The JOC Cockpit installer specifies the default dialect
org.hibernate.dialect.SQLServerDialect
, therefore any changes have to be manually applied.
References