Oracle Docs Claim that ODP.net creates a windows event log containing the location of the trace.
ODP.NET will create an entry in the Windows event log where the trace was created anytime it creates a trace file.
Using the following in my app.config or web.config (depending on whether it's running standalone in unit tests, or in the application)
<oracle.manageddataaccess.client>
<version number="*">
<dataSources>
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) "/>
</dataSources>
<settings>
<setting name="TraceLevel" value="7" />
<setting name="TraceOption" value="1" />
<setting name="TraceFileLocation" value="D:\Oracle_Home\logs" />
</settings>
</version>
</oracle.manageddataaccess.client>
I am not seeing the log entry being created by ODP Managed data access.
(but did find the trace entry after some effort, can't remember what fixed it)
Where can you find the windows event log claimed to be created by ODP.net? or is this only a feature of the unmanaged client?