How to Calculate Oracle Undo Retention

Oracle Software

12 March 2024   0 Comment

Hi folks, I decided to write a practical article for the Undo retention calculation. The transaction undo information generated in the database is stored in the rollback segments until the commit or rollback is performed. Sometimes our long-running queries in the database are met with the error ”ORA-01555:Snapshot Too Old”.This is due to the fact […]

Read More

Oracle Multi tenant Architecture ORA-20000 “12c 12.2.0.1.0” container Schema does not exist or insufficient privileges

Oracle Container Database and Pluggable Database

20 December 2023   0 Comment

I recently had to face such a problem. For those who give up, the answer is below 🙂 exec dbms_Stats.gather_schema_stats(‘TESTSCHEMA’); ERROR at line 1:ORA-20000: Schema ” TESTSCHEMA” does not exist or insufficient privilegesORA-06512: at “SYS.DBMS_STATS”, line 38330ORA-06512: at “SYS.DBMS_STATS”, line 38289ORA-06512: at “SYS.DBMS_STATS”, line 8593ORA-06512: at “SYS.DBMS_STATS”, line 38172ORA-06512: at “SYS.DBMS_STATS”, line 38317ORA-06512: at line […]

Read More

PGA memory used by the instance exceeds PGA_AGGREGATE_LIMIT “ORA-04036”

How to fix Oracle

26 October 2023   0 Comment

Unable to allocate memory for new incident error in file /u01/app/oracle/diag/rdbms/instance_name/instance_name/trace/instance_name_m72034.trc:ORA-04036: PGA memory used by the instance exceeds PGA_AGGREGATE_LIMIT I had a same problem and solved it by doing the following. See what the current pga_aggregate_limit is using this (in case you want to revert your changes): show parameter pga_aggregate_limit; alter system set pga_aggregate_limit = […]

Read More

Oracle Database 19c Wait for an Undo Record Event “Wait for a undo record”

How to fix Oracle

20 October 2023   0 Comment

Hi Folks,I recently saw wait events on the single instance database, the root cause of the problem was caused by the undo event “Wait for a undo record”. There are cases where parallel process recovery is not as fast as serial process recovery, because the PQ secondary can interfere with each other’s operation by competing […]

Read More

How to Kill Long Running Transactions In The Goldengate Extract

How Problems with Oracle GoldenGate

28 May 2023   0 Comment

You can’t close an extract that is a long running transaction with Golden gate. Let’s find out how it’s done. ./ggsci You can check extract GGSCI (dev) 21> info all GGSCI (dev) 21> send extract name showtrans tabular GGSCI (dev) 21> stop extractname STOP request pending. There are open, long-running transactions. Before you stop Extract, […]

Read More

ASMCMD-8102: no connection to Oracle ASM; command requires Oracle ASM to run

Oracle cluster check

27 March 2023   0 Comment

None of the ASM Ctl commands are working and are idle.when checked with ps -ef, you can see that the ASM instance is working and the database is also working well.But we have a problem, the Cluster high availability services are not working. -> asmcmd lsdgASMCMD-8102: no connection to Oracle ASM; command requires Oracle ASM […]

Read More

ORA-09817: Write to audit file failed, ORA-01013: user requested cancel of current operation

How to fix Oracle

25 March 2023   0 Comment

ERROR at line 1:ORA-09817: Write to audit file failed.SVR4 Error: 49: Disc quota exceededAdditional information: 9ORA-01013: user requested cancel of current operation Solution You should check your disk space. Example cd /u01/app/oracle/admin/orcl/adump/ rm *.aud or solaris -> find /u01/app/oracle/admin/orcl/adump/ -name *.aud -mtime +0 -exec rm -rf {} \;

Read More

ORA-00700: soft internal error, arguments: [pga physmem limit]

21 February 2023   0 Comment

When starting an Oracle Instance, the following messages are displayed in the warning log files, ORA-700 errors are called flexible claims to note that something unexpected has happened, but not fatal to a transaction or moment, so the transaction can proceed without any damage. Cause PGA_AGGREGATE_TARGET specified is highErrors in file /u01/app/oracle/diag/rdbms/bugra/BUGRA/trace/BUGRA_ora_14488.trc (incident=948025):ORA-00700: soft internal […]

Read More

How to Resolve ORA-02020: too many database links

Oracle Software

15 April 2022   0 Comment

We have prepared a script to learn the fra status of database instances Oracle cloud control. It caused the ORA-02020 error because the open_links parameter was insufficient. SQL> select * from dual@dbllink; ORA-02020: too many database links in use This is because both the OPEN_LINKS and the OPEN_LINKS_PER_INSTANCE server parameter are too small. SQL> show […]

Read More

ORA-46952: standby database format mismatch for password file

oracle dataguard

8 April 2022   0 Comment

If there is a gap problem in your standby dataguard environment and you are getting this error, you are in the right post. This error is a generic error and your password file indicates a problem. It’s time to check your file. Let’s get started. First of check, do a bidirectional connection test and make […]

Read More

How to resolve Agent Unreachable errors in Enterprise Manager Cloud Control 13c

Oracle cloud control

21 August 2020   0 Comment

I encountered such an error in Enterprise Manager Cloud Control 13C In the Cloud Control Manager Target , you may see issue of rack showing status as “Down” when running “show status” button Please follow the steps below for solition.. Go to the directory where Agent in is installed. <AGENT-HOME>/bin/emctl stop agent Take a backup […]

Read More

ORA-01111: Name For Data File Is Unknown – Rename To Correct File

oracle dataguard

28 July 2020   1 Comment

Today one of the Physical standby database environment faced an case where the Media Recovery MRP process got crashed and the standby database got out of sync. This post describes how to repair multiple or single-correct file of data files. Mon Jul 28 10:26:04 2020MRP0: Background Media Recovery terminated with error 1111ORA-01157: cannot identify/lock data […]

Read More

[INS-00001] Unknown irrecoverable error Oracle 19c Grid Upgrade

grid upgrade

5 May 2020   1 Comment

If you get an error like below while running root.sh file on the installation screen, you need to restart the installation. [root@db~]#/oracle/grid18c/root.shPerforming root user operation for Oracle 18c The following environment variables are set as:ORACLE_OWNER= ora18cORACLE_HOME= /oracle/grid18c Enter the full pathname of the local bin directory: [/usr/local/bin]:The contents of “dbhome” have not changed. No need […]

Read More

How to change Oracle Database NLS DATE FORMAT

How to fix Oracle

22 April 2020   0 Comment

To change the NLS_DATE_FORMAT setting Use the below command, it will help to solve your problems for after restart database. Also, if you do not want to do this at the instance level, you can make session NLS_DATE_FORMAT based on sql queries. ALTER SESSION SET NLS_DATE_FORMAT=’DD-MM-YYYY’; [oraetkb@sp000dba01 ~]$ sqlplus / as sysdba SQL*Plus: Release 12.2.0.1.0 […]

Read More

Oracle Container Pluggable Database ERROR at line 1: ORA-01157: cannot identify/lock data file 90 – see DBWR trace file ORA-01110: data file 90:

Oracle Container Database and Pluggable Database

14 April 2020   0 Comment

In this post, Pluggable database ORA-01157 error we will examine.I encountered an error on when opening the database like below The data file may have been renamed at the operating system level, moved to a different directory or disk drive with or without awareness.In this case, restore and recover the data file or move the […]

Read More

ORA-65066: The specified changes must apply to all containers

Oracle Container Database and Pluggable Database

2 April 2020   0 Comment

When I wanted to change the password on the pluggable database user, I got an error like the one below. SQL> alter user test identified by test; alter user test identified by test ERROR at line 1:ORA-65066: The specified changes must apply to all containers View connection information. SQL> show con_nameCON_NAMEPLUG1 Login as sysdba SQL> […]

Read More

Oracle 12c Container RAC Database Pluggable Error ORA-01033

Oracle Container Database and Pluggable Database

31 March 2020   0 Comment

Today I will talk about a problem I encountered in pdbs “ORA-01033” error on Oracle Container Database. Query existing databases running on the container. SELECT inst_id,con_id,name,open_mode FROM gv$pdbs ORDER BY con_id,inst_id If the databases are “ALTER PLUGGABLE DATABASE ALL OPEN” If you opened it with the command, you just opened it on the relevant cdb. […]

Read More

ORA-39083: Object type TABLE:”TEST”.”TEST1″ failed to create with error: ORA-01950: no privileges on tablespace ‘USERS’

How to fix Oracle

29 March 2020   0 Comment

When doing data pump operation with Oracle, you can get an error like below if schema to import is not authorized.This is very common error which comes due to insufficient privileges on tablespace. ORA-39083: Object type TABLE:”TEST”.”TEST1″ failed to create with error: ORA-01950: no privileges on tablespace ‘USERS’ SQL>select USERNAME, DEFAULT_TABLESPACE from dba_users where USERNAME=’test’; […]

Read More

ORA-00205 error in identifying control file, check alert log for more info

How to fix Oracle

20 March 2020   0 Comment

When the control file file is deleted or its location changes, when you try to run oracle database, we encountered an error like below. SQL> startupORACLE instance started.ORA-00205: error in identifying control file, check alert log for more info See control file location show parameter control_files NAME TYPE VALUE control_files string +DATAC/TESTDB/CONTROLFILE/cu rrent.814.1034955455 Confirm the […]

Read More

Oracle GoldenGate WARNING OGG-25108 Failed to set the Oracle session tag: ORA-04060: insufficient privileges to execute DBMS_STREAMS.SET_TAG

How Problems with Oracle GoldenGate

22 February 2020   0 Comment

On the Oracle GoldenGate app, you may encounter an error like below when logging in with the goldengate user. The error I encountered occurred in the 11.2.0.4 database on the Oracle 19c GoldenGate version. Oracle Bug fixed in 12.1.2.1.0 and on later versions. Correct it by adding DBMS_STREAMS_ADM.set_tag for 11g DB. Oracle will continue to […]

Read More

How to fix ORA-01565: error in identifying file ‘?/dbs/[email protected]

How to fix Oracle

28 January 2020   3 comments

While working on an Oracle ASM instance, we may encounter a spfile creation error like the one below. SQL> create pfile=’/u01/ora/inittkitest3.ora’ from spfile; create pfile=’/u01/ora/inittkitest3.ora’ from spfile * ERROR at line 1: ORA-01565: error in identifying file ‘?/dbs/[email protected]’ ORA-27037: unable to obtain file status Linux-x86_64 Error: 2: No such file or directory Additional information: 3 […]

Read More

ORA-01565: ERROR IN IDENTIFYING FILE – ORA-01031: insufficient privileges startup

How to fix Oracle

5 December 2019   0 Comment

The solution for Oracle Database insufficient privileges generic error is as follows. [grid@testdb1 ~]$ srvctl start asm; [grid@testdb1 ~]$ crsctl stat res -t SQL> startup ORA-01078: failure in processing system parameters ORA-01565: error in identifying file ‘+DATA/ORCL/PARAMETERFILE/spfileORCL.ora’ ORA-17503: ksfdopn:2 Failed to open file +DATA/ORCL/PARAMETERFILE/spfileORCL.ora ORA-15056: additional error message ORA-17503: ksfdopn:2 Failed to open file +DATA/ORCL/PARAMETERFILE/spfileORCL.ora […]

Read More

How to fix ORA-03113: end-of-file on communication channel Process ID: 194555 Session ID: 1537 Serial number: 3

How to fix Oracle

1 December 2019   3 comments

ORA-03113: end-of-file on communication channel Process ID: 194555 Session ID: 1537 Serial number: 3 ERROR: failed to establish dependency between database TEDAS and diskgroup resource ora.DATAC1.dg SQL> shu immediate; SQL> alter database nomount; SQL> alter database mount; SQL> select * from v$log; SQL> alter database clear unarchived logfile group 50; SQL> alter database clear unarchived […]

Read More