I am using a Spring Data Repository interface to retrieve data from DB2 (z/OS). I have a couple of methods that rely on the method signatues and one that relies on an explicit @Query.
How do I make the SQL generated have the "WITH UR" clause? I added @Transactional(isolation=Isolation.READ_UNCOMMITTED) on the line above the @Query annotation and also above the two methods but it doesn't seem to append the clause to the generated SQL.
Thanks