Resolve kkjcre1p unable to spawn jobq slave processs, slot 0, error 1089 in oracle database.

Resolve kkjcre1p unable to spawn jobq slave process. We are facing this issue while doing shutdown oracle database. Root Cause: – This situation occurs while we fire “shutdown immediate”in oracle database. Continuously error message is coming in alert log file. resolve kkjcre1p unable to spawn jobq slave process, slot 0, error 1089 in oracle database. … Read more

Oracle database monitoring scripts for daily weekly monthly and quarterly DBA checklist activity

In this post I am going to describe you Oracle Database Monitoring Scripts for every DBA for oracle database.  Oracle database health check:-       Oracle Database Monitoring Scripts.     DBA Daily checklists:   1: Health check of the Database. 2: Viewing the Alert log file to analyze the ORA errors if any. … Read more

LsInventory session failed: opatch failed with error code 73

LsInventory session failed: RawInventory gets null OracleHomeInfo | In Oracle EBS Instance, recently I have faced the error as lsinventory session failed while try to run ./opatch lsinventory in our Instance. OPatch wasn’t able to find the database home in central Inventory, due to this issue (opatch failed with error code 73) unable to do the … Read more

REP-0004 Warning Unable to open user preference file.

Introduction: –    The Likely cause of this issue is prefs.ora file is missing in Application user’s $HOME. We need to copy this to $HOME. Oracle Report Builder warning in r12 REP-0004 Warning Unable to open user preference file.     Resolving REP-0004 Warning Unable to open user preference file.     Error: – Showing … Read more

opmnctl opmn is not running and failed to start a managed process after the maximum retry limit.

opmnctl opmn is not running| In this post describe how to resolve the opmnctl opmn  failed to start a managed process after the maximum retry limit issue. Opmnctl opmn is not running. Scenario: Recently we have got error ‘Failed to start managed process after the maximum retry limit’ because copied IAS from different machine and try to start the … Read more

Index usage monitoring in oracle database

Suppose your index is not being used by SQL query with cost-based optimizer. Index monitoring allow you to easy identify the unused indexes (that are not being used) in oracle database. You can use alter index index_name monitoring command to enable the oracle index usage monitoring. Index usage monitoring Syntax to enable monitoring: – Once you … Read more

SQL Create Table

CREATE TABLE– Using create table we can create empty table in oracle database.     SQL create table syntax.   We all are aware that table is very important object in each and every database, so let start creating table in database. CREATE TABLE is the key word telling database to create new table in … Read more