Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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
  • 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.

...