how to kill an oracle process in my program

I assume you want to kill an Oracle Session?

If so, you need to obtain the session's SID and SERIAL# numbers, which can be found in the V$SESSION view.

With this information you can execute an ALTER SYSTEM KILL SESSION ', ' statement.

This does require some privileges though.

------------------
Marco Kalter
Allround Automations
 
Back
Top