I want to block sqlplus '/as sysdba' in Server itself, what is the solution for this
Main Topics
Browse All Topicshow to block sqlplus '/as sysdba'?
I Don't want anybody to access Database using <sqlplus '/as sysdba'>, the user has to give the user name and password to access the database
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Logging in "/ as sysdba" can not be really unactivated.
It can, actually, be unactivated by changing a parameter in slqnet.ora (just set SQLNET.AUTHENTICATION_SERV
Better idea would be to restrict access to the system.
Do as tolomir suggests.
1) Change oracle password.
2) Anyone needing to login to server should have personal (or network) account.
3) DBA's should also login to server with personal (or network) account and belong to DBA group
4) Login to Oracle account sould be by using sudo (nobody need to know the password)
Another idea is to allow logs only from a reliable set of machines
See here but change it to BEFORE LOGON
See also this:
SQL> SELECT SYS_CONTEXT('USERENV','CUR
CURRENT_USER
--------------------------
SYS
So you can encounter the user and to act appropriatly.
The snippet shows how to prevent DDLs from machines that are not granted this privilege.
Business Accounts
Answer for Membership
by: TolomirPosted on 2009-04-30 at 02:13:34ID: 24268044
sqlplus '/as sysdba' only works on the server itself, not remote.
So make certain the users don't have access to the oracle shell account and you are done (and the root account of cause)