0

Because we run multiple instances of the same application on the dev-servers, I'm trying to add the sqlnet.client_registration-parameter to the sqlnet.ora-files used by each instance. This, I hope, would help us distinguish clients by the instance-name instead of (or in addition to) hostname:

sqlnet.client_registration=MeowMeow

However, I do not see the configured strings anywhere in the V$SESSION -- is there some other place to look for the "MeowMeow" from the above example?

Mikhail T.
  • 166
  • 9

1 Answers1

0
  1. This parameter is valid for the client, not the server. Configuring it on the server side makes no sense.

  2. The extra information is displayed in the listener log, and it does not appear in audit trail nor V$SESSION.

Balazs Papp
  • 41,488
  • 2
  • 28
  • 47