I need to find the user name of the person who modified a particular stored procedure.
How do I find out when a stored procedure was last modified or compiled in Oracle?
I tried the following query and it worked for me:
SELECT * FROM sys.objects WHERE type = 'P' ORDER BY modify_date DESC
This query is for stored procedures.