I'd like to set default database schema in Oracle Connection URL
jdbc:oracle:thin:@<server>:<port1521>:<sid>
My sample SQL statement:
select monkey_name from animals.monkey
I need to query database without schema prefix anymals.
i.e. when I run this statement
select monkey_name from monkey
it will uses animals
schema by default.
What do I need to specify in connection URL above get such effect?
Thanks