Saturday, December 7, 2013

RCU:6107 DB Init Param Error

While Installing Repository Creation Utility (RCU) Installation the following error occurs: RCU:6107 DB Init Param Error This can be removed simply by the following: 1. Login on your database with system user. 2. Write > show parameters processes (which will show the current value of processes). 3. If its value is less than 500 then write the following command: ALTER SYSTEM SET PROCESSES=500 SCOPE=SPFILE; 4. Write > show parameters open_cursors (which will show the current value of open_cursors). 5. If its value is less than 500 then write the following command: ALTER SYSTEM SET OPEN_CURSORS=500 SCOPE=SPFILE; 6. Restart your DB or system. SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area 599785472 bytes Fixed Size 1288820 bytes Variable Size 167773580 bytes Database Buffers 427819008 bytes Redo Buffers 2904064 bytes Database mounted. Database opened. SQL> show parameters processes; NAME TYPE VALUE ———————————— ———– —————————— aq_tm_processes integer 0 db_writer_processes integer 1 gcs_server_processes integer 0 job_queue_processes integer 4 log_archive_max_processes integer 2 processes integer 500 7. Start the installation now…. There will be no error….. Courtsey :http://mhabib.wordpress.com/2010/07/20/rcu6107-db-init-param-error/

No comments:

Post a Comment