The code portion within the connect to is DB2 syntax and you will need to consult DB2 documentation and forums with detail questions.

It's long ago that I've used DB2.
WITH UR is for Uncommited Read (dirty reading). It's the fastest way to read data in DB2 because it doesn't control and synchronize with any update, insert or delete that might happen at the same time. Using UR is very o.k. if that's some reporting data base where you can be sure that the updates happen at a time where your queries won't run.
This bit looks "suspicious"
but then eventually totally o.k. with DB2 SQL.