How I can find out the name of the process that updates an specific table in the database.
I try things like this
SELECT * FROM all_tab_modifications
WHERE table_name like 'GOBS%'
it shows the inserts, updates counts but not the name of the process that actually does the update
Thank you