When I try to using eclipselink to implement the concurrent event in the DB2.I added an annotation @Version in the entity class:
@Version
@Column(name = "LAST_MNT_TS")
private Timestamp lastMaintenanceTimestamp;
After that I try to update the table, it seems like will calling the system table to search the timestamp. But, I do not have the permission for the DB2 system table .And the exception is:
[EL Fine]: 2011-06-28 11:05:21.98--ClientSession(15607581)--Connection(11405376)--Thread(Thread[main,5,main])--SELECT DISTINCT CURRENT TIMESTAMP FROM SYSIBM.SYSTABLES
[EL Fine]: 2011-06-28 11:05:22.309--ClientSession(15607581)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2011-06-28 11:05:22.637--UnitOfWork(19624355)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.2.0.v20110202-r8913): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -551, SQLSTATE: 42501, SQLERRMC: DT82056;SELECT;SYSIBM.SYSTABLES
Error Code: -551
Call: SELECT DISTINCT CURRENT TIMESTAMP FROM SYSIBM.SYSTABLES
Query: ValueReadQuery(sql="SELECT DISTINCT CURRENT TIMESTAMP FROM SYSIBM.SYSTABLES")
[EL Config]: 2011-06-28 11:05:29.715--ServerSession(16239564)--Connection(11405376)--Thread(Thread[main,5,main])--disconnect
How can I skip the search in the system table?