Shell script killoracle Database specified user

Source: Internet
Author: User
Tags sqlplus

Step One:

Locate the session information for the specified user, and draw up the execution script:


#!/bin/ksh
echo "conn Sys/sys as SYSDBA
select ' Alter system kill session ' ' | | Sid | | |  serial# | | | ' From  sys.gv\ $session where username= ' SCOTT ';
Exit; "> Sel.sql
sqlplus-silent/nolog <<eof @sel. sql  1>tmp.sql 2>&1
EOF
Cat tmp.sql|sed  ' 1,3d '  1>exc.sql 2>&1

Step Two:

To execute a script in a step file:

#!/bin/ksh
sqlplus-silent/nolog <<eof
conn/as sysdba
@exc. SQL  1>result.log 2> &1
exit
EOF

Note:

Because I am not familiar with Shell script, can not give two scripts put together to implement the method;

The script will be described in a separate blog because it requires the local server (the server where the application resides) to go to the remote machine (the server where the database resides).

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.