Kirill
Kirill

Reputation: 459

Get list of queries to oracle database

I use EF and Oracle.ManagedDataAccess to get/update/delete data from Oracle database.

How can I get history list of PL/SQL queries for this Oracle database ?

Upvotes: 1

Views: 2468

Answers (1)

James
James

Reputation: 3015

You can use this sql statement to get the history for any date:

SELECT * FROM V$SQL V where first_load_time LIKE '2015-05-04%';

Repeated: Find out the history of SQL queries

I don't know how to set the question as duplicated...

Upvotes: 2

Related Questions