You should be able to find out everything you need to know with the help of V$SESSION and V$PROCESS.
It seems that you already know your PID. With that PID, you can use the following SELECT Statement and identify the SQL_ID.
select sid,serial#,username,sql_id,schemaname,osuser,process,machine,port,program,type,paddr
from v$session
where PADDR = (select ADDR from V$PROCESS where SPID = 'YOURPID')
With the SQL_ID known, you can go and retrieve the performed action from within V_$SQLAREA. This system view will provide you with the exact statement which is currently running.
SELECT * FROM SYS.V_$SQLAREA WHERE sql_id='SQL_ID_FROM_THE_PREVIOUS_SELET';
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…