srinannapa
srinannapa

Reputation: 3207

Oracle queries executed in client side

Is it possible to find oracle queries executed in client side.

say , a sql request from jdbc client to oracle server . Will this communication be logged somewhere in temp location ?

Upvotes: 1

Views: 145

Answers (1)

SpaceTrucker
SpaceTrucker

Reputation: 13556

You can use log4jdbc to log the queries on client side.

I don't think it makes sense to log the communication itself, because the protocol used by oracle may not be publicly documented.

Upvotes: 1

Related Questions