Few queries for OPP
1. How to monitor the workload of OPPIn general "Administer Concurrent Manager Screen" shows pending and running requests against each manager, but it does not show pending requests against OPP...
View ArticleQueries to monitor the FND_LOBS attachment
1. To determins total number of attachments per program,SQL> select distinct program_name, count(*) from fnd_lobs group by program_name order by 2 desc;2. To determine total number of program with...
View ArticleScript to kill db session of a running concurrent program
Provide the Concurrent Program name, set serveroutput on;declaretrace_cmd varchar2(200);trace_sid varchar2(100);trace_serial varchar2(100);req_id...
View ArticleScript to kill db session and cancel running current request
set lines 140;set serveroutput on;declaretrace_cmd varchar2(200);trace_sid varchar2(100);trace_serial varchar2(100);req_id varchar2(100);sess_status...
View ArticleArticle 0
ORA-02020: Too Many Database Links In UsePROBLEM:While querying against a database link, got below error.select sysdate from dual@DBLINK *ERROR at line 1:ORA-02020: too many database links in useCAUSE...
View ArticleThe referenced database doesn't contain a valid management Repository
OMS 13c agent installation failed with "The referenced database doesn't contain a valid management Repository."Cause :-Generally this error comes when the database we are using as OMS database was...
View ArticleMove the central Inventory (oraInventory) to another location
Solution On Unix:Find the current location of the central inventory (normally $ORACLE_BASE/oraInventory):For example:find /home/oracle -name oraInventory -print /u01/app/oracle/oraInventoryOpen the...
View ArticleArticle 0
Convert Oracle 12c database from Non-ASM to ASM (standalone)Now from 12c database you can move/relocate datafiles ONLINE menaing users can still able to access the database andobjects while the...
View ArticleORAPWD utility in Oracle 12c
Create Password files for remote authentication enforces complexity rulesfor the provided password. SYSDBA is a System Privilege. Normally,we connect to SQL*Plus using sqlplus user/password or...
View ArticleTABLESPACE IN MEMORY OPTION
Managing Tablespace Setting Default InMemory OptionThe Inmemory column store parameters setted for tablespace default means all tables and materialized views in that tablespace will use it.Step .1...
View ArticleArticle 3
ORA-01207: file is more recent than control file – old control fileError Message:SQL> alter database open;ORA-00283: recovery session canceled due to errorsORA-01122: database file 1 failed...
View ArticleArticle 2
ORA-12060: During Mview CreationFailing in creating materialized view between two databases with different charactersetSource Database:SQL> select * from nls_database_parameters@link1 where...
View ArticleArticle 1
How to disable NUMA in Red Hat Enterprise Linux systemEnvironment:Red Hat Enterprise Linux 4Red Hat Enterprise Linux 5Red Hat Enterprise Linux 6Red Hat Enterprise Linux 7Issue:How to disable NUMA in...
View ArticleArticle 0
Configuring JBoss ON as a Windows ServiceThe rhq-server.bat script has an installation option that installs the script as a Windows service.1) Set the environment variable to run the Windows service...
View ArticleGoldengate: ERROR: Unable to connect to database using user ggate. Please...
Unable To Connect To Database Using User <goldengate user>. Please Check Privileges.GGSCI (ggsource.doyensys.com) 5> dblogin USERID gguser, PASSWORD xxxxxxxxERROR: Unable to connect to...
View ArticleGoldengate: ERROR OGG-08221 - Cannot Register Or Unregister EXTRACT In Oracle...
OGG-08221 - Cannot Register Or Unregister EXTRACT In Oracle GoldenGate:Supplemental logging wasn't enable at the database level. Enable DB supplemental logging.SQL> ALTER DATABASE ADD SUPPLEMENTAL...
View ArticleGoldengate: ./ggsci: error while loading shared libraries: libclntsh.so.12.1:...
Error while loading shared libraries: libclntsh.so.12.1: cannot open shared object file: No such file or directory[oracle@ggsource.doyensys.com]$ ./ggsci./ggsci: error while loading shared libraries:...
View ArticleGoldengate: REPLICAT ABENDS OGG-00423 Could not find definition for demo.xxxx
REPLICAT ABENDS OGG-00423 Could not find definition for demo.xxxxThis is a case-sensitivity issue. The object name in defgen file is treated as case-insensitive name and could not find the table...
View ArticleBLACKOUT FOR MULTIPLE TARGETS ON EM13C
BLACKOUT FOR MULTIPLE TARGETS ON EM13CThe notifications emails of a “planned” downtime is one of the annoying things of monitoring systems. You forget creating blackout and you start a maintenance...
View ArticleAutomatic Startup and Shutdown the Oracle Database and Listener on Linux
Automatic Shutdown and Startup of Oracle Database and Listener on LinuxWe need to edit the /etc/oratab file and make sure that the databases are set to...
View Article