-
Junior Member
Find previous executed SQL
Hi all
Can anybody tell me the query to find out the last or previous some executed SQL by SQL command prompt.
it doesnt matter it is executed by application or the SQL command prompt
thanks in advance
-
Expert Member
Re: Find previous executed SQL
-
Junior Member
Re: Find previous executed SQL

Originally Posted by
susarlasireesha
Use Sys.V_$SQL
susarla,
Use Sys.V_$SQL
executing the above in Oracle SQL Developer
gives "Invalid SQL Command"
Do we execute in SQL Plus*????, give the exact steps
-
Junior Member
Re: Find previous executed SQL
Run the below query to fetch the last executed SQL
select * from sys.V_$SQL
order by FIRST_LOAD_TIME desc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules