I\'ve got an issue with Hibernate when executing my unit tests, here is the issue I get :
org.springframework.dao.InvalidDataAccessResourceUsageException:
u
You are using HSQLDB for unit tests and Oracle in production.
To run HSQLDB with the Oracle dialect you must first enable Oracle syntax compatibility mode on HSQLDB:
SET DATABASE SQL SYNTAX ORA TRUE;
The runtime error was most likely produced by a limit imposed on the result size of query. In Oracle this is implemented by using the pseudocolumn ROWNUM. HSQLDB understands ROWNUM only in compatibility mode.