Search This Blog

Thursday, 6 November 2025

command to kill all the processes running by a specific user

 

following command can be used to kill all the processes running by oracle user, replace oracle by any user of interest.


pkill -9 -u `id -u oracle`



No comments:

Create DB link in another db user

 To test / create the db link in another db user schema following procedure can be used. create or replace procedure tst_user.dblink   is ...