Hibernate 3.2.5 GA
Using the temporary table feature with z/OS, I found out a syntax problem with the statement generated by hibernate. In fact DB2 for z/OS does not support the "not logged" but the class DB2Dialect, in method getCreateTemporaryTablePostfix declares a "not logged" option.
So I tried to redefine the method getCreateTemporaryTablePostfix in the class DB2390Dialect, returning an empty string and it worked!
So my propose is to add this method to DB2390Dialect:
Code:
public String getCreateTemporaryTablePostfix() {
return "";
}
http://publib.boulder.ibm.com/infocente ... 003272.htm
http://publib.boulder.ibm.com/infocente ... /rdgtt.htm