Default Schema in Oracle Connection URL

前端 未结 4 1000
醉酒成梦
醉酒成梦 2020-11-30 04:04

I\'d like to set default database schema in Oracle Connection URL

jdbc:oracle:thin:@::
<
4条回答
  •  一整个雨季
    2020-11-30 04:14

    What about the use of synonyms?

    create synonym monkey for animals.monkey;
    
    select monkey_name from monkey
    

提交回复
热议问题