...
- 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
- JOC Cockpit
./resources/joc/jobscheduler.hibernate.cfg.xml
./resources/joc/reporting.hibernate.cfg.xml
- JobScheduler Master
./config/hibernate.cfg.xml
./config/reporting.hibernate.cfg.xml
- JOC Cockpit
- The JOC Cockpit installer and JobScheduler Master installer specifies specify the default dialect
org.hibernate.dialect.SQLServerDialect
, therefore any changes have to be manually applied.
...