You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Micronaut has a global application name concept. Oracle connections can be given a session name that shows up in various places (e.g. when listing active sessions). It is easy to set:
datasources:
default:
url: jdbc:oracle:thin:@//localhost:1521/freepdb1
driver-class-name: oracle.jdbc.OracleDriver
username: abc
password: abc
dialect: oracle
data-source-properties:
v$session.program: "My Great Program"
.... but not intuitive to set. Micronaut SQL should configure this data source property when the dialect is oracle by itself so everything just works.
The text was updated successfully, but these errors were encountered:
Feature description
Micronaut has a global application name concept. Oracle connections can be given a session name that shows up in various places (e.g. when listing active sessions). It is easy to set:
.... but not intuitive to set. Micronaut SQL should configure this data source property when the dialect is
oracle
by itself so everything just works.The text was updated successfully, but these errors were encountered: