Sleep mode with oracle dblink implementation

Just new with hibernate, is there a way to implement oracle dblink in sleep mode? for example select * from tablename@dblinkfor use in hql?

+3
source share
1 answer

Creating SYNONYM in Oracle for tablename @dblink and setting up your Hibernate object to match this synonym should do the trick.

+2
source

All Articles