What scope ? The session ? The transaction ? Just a batch of multiple querys ? Just one query ?
I would guess there is a way to make the whole session run with a different isolation level:
See hibernate.connection.isolation in
http://www.hibernate.org/hib_docs/refer ... ml_single/
I think the "with ur" was just HQL passing that directly to your underlying DB ?
But you are asking is for a query to use READ-UNCOMMITED and all the resulting lazy loading to also use the same ? This request is somewhat difficult, since once an object is retrieved its an object and doesn't carry any attributes relating to the original query that got it.
Maybe you can setup a transaction in hibernate to use a different isolation level ?
So I think your only way out is to make a session use a different isolation level, and if necessary use 2 session instances in your task.
HTH