Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

RMAN causes ORA-01031 tips

Oracle Database Tips by Donald BurlesonUpdated January 7, 2015

Question:  I am getting the ORA-01031 error in 11g r2 when trying to connect to RMAN:

RMAN> connect target rmanuser/rmanuser@stdby

RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
ORA-01031: insufficient privileges

How do I fix this RMAN ORA-01031 error?

Answer:  Yu need a user with the SYSDBA privilege to avoid the ORA-01031 error.

Your user does not have the proper RMAN privileges (SYSDBA privilege):

To find a list of user who have SYSDBA privilege, issue this SQL:
select *
from
   v$pwfile_users;

Starting in Oracle 11g, all RMAN sessions must be configured for remote login or you will get the ORA-01031: insufficient privileges error.  To connect to the target database using RMAN as SYSDBA, you must do one of the following procedures:

  • Connections with sysdba or sysoper privileges must always be authenticated. This is possible through OS authentication by assigning the appropriate OS group to the OS user.   The RMAN user account should be part of the operating system DBA group on the target server.

  • Another method is the use of a password file. If an 11g client is not configured you will get the ORA-01031: Insufficient privileges error when connect to Oracle in SQL*Plus as the SYS or SYSTEM user.  You do this by creating a password file using orapwd utility and enable the remote_login_passwordfile initialization parameter.  Oracle remote login is commonly configured with a password file using the orapwd utility. If you already have a password file and you are getting the ORA-01021 error, try deleting and re-creating your password file using orapwd.

Here are the steps to prevent the ORA-01031 error when connecting as sysdba in 11g:

1 - Create the password fileThis is done by executing the following command:

$ orapwd file=filename  password=password entries=max_users

The max_users is the number of database users that can be granted SYSDBA or SYSOPER.  This parameter should be set to a higher value than the number of anticipated users to prevent having to delete and recreate the password file. 

2 - Edit the init.ora parameter remote_login_passwordfile

This parameter must be set to either SHARED or EXCLUSIVE.  When set to SHARED, the password file can be used by multiple databases, yet only the SYS user is recognized.  When set to EXCLUSIVE, the file can be used by only one database, yet multiple users can exist in the file. 

SQL> show parameter password
 
NAME                          TYPE        VALUE
----------------------------- ----------- ----------remote_login_passwordfile     string      EXCLUSIVE

3 - Grant SYSDBA or SYSOPER to users When SYSDBA or SYSOPER privileges are granted to a user, that user's name and privilege information are added to the password file.

SQL> grant sysdba to scott;
 
Grant succeeded.

 
 
 
Get the Complete
Oracle Backup & Recovery Details 

The landmark book "Oracle Backup & Recovery: Expert secrets for using RMAN and Data Pump " provides real world advice for resolving the most difficult Oracle performance and recovery issues. Buy it for 40% off directly from the publisher.
 



 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.