Durante a execução de um backup, foi reportado o seguinte erro: Para resolver este problema, executei um resync (para efetuar uma resincronização dos metadados no schema do catálogo do rman com os metadados no control file do banco de dados alvo) no catalógo do RMAN e posteriormente o backup foi finalizado com sucesso após uma nova execução. Segue abaixo um exemplo do troubleshooting: brunorsHi! I am Bruno, a Brazilian born and bred, and I am also a naturalized Swedish citizen. I am a former Oracle ACE and, to keep up…
Category: Oracle Database Errors
cp $STAGE_AREA/21972320/18203838/files/lib/libnnz11.so $ORACLE_HOME/lib/libnnz11.so cp: $ORACLE_HOME/lib/libnnz11.so: Text file busy
Estava aplicando o CPUJan2016 em um banco de dados Oracle 11.2.0.4 quando durante a execução do opatch, recebi o seguinte erro: cp $STAGE_AREA/21972320/18203838/files/lib/libnnz11.so $ORACLE_HOME/lib/libnnz11.so cp: $ORACLE_HOME/lib/libnnz11.so: Text file busy O interessante é que na mensagem do próprio erro ele faz uma menção a uma nota do metalink exatamente do tipo de plataforma que eu estava utilizando , AIX. Copy failed from ‘$STAGE_AREA/21972320/18203838/files/lib/libnnz11.so’ to ‘$ORACLE_HOME/lib/libnnz11.so’… Please verify all applications associated with the Oracle Home ‘$ORACLE_HOME’ are shut down. If this is AIX, please perform solution documented in Note 739963.1 on https://myoraclesupport.oracle.com.…
opatch: not found
Uma das atividades ao se aplicar um patch de segurança em um banco de dados é a de validar as variáveis de ambiente (ORACLE%[SID, HOME], PATH) do seu sistema operacional, além de um bom backup e algumas outras validações. No entanto, quando estas validações passam despercebidas, erros acontecem… Abaixo, irei demonstrar um erro que acontece quando o pré-requisito “Validar variáveis de ambiente”, com ênfase na PATH, passa despercebido: O problema é resolvido configurando corretamente a variável PATH… Após isso, reprocessar a execução do patch. A dica que…
SEVERE: The existing database you have specified has Grid Control repository. This operation is not supported.
Eu estava tentando configurar o DB Control em um servidor que tinha o GRID Control instalado e usar o mesmo repositório de banco de dados para ambos, mas durante minhas atividades eu recebi o seguinte erro: [oracle@ocm install]$ emca -config dbcontrol db STARTED EMCA at Oct 29, 2015 10:34:48 AM EM Configuration Assistant, Version 11.2.0.3.0 Production Copyright (c) 2003, 2011, Oracle. All rights reserved. Enter the following information: Database SID: OEM Listener port number: 1522 Listener ORACLE_HOME [ /u01/app/oracle/product/11.2.0/dbhome_1 ]: Password for SYS user: Password for DBSNMP user: Password…
EM Configuration issue. /u01/app/oracle/product/11.2.0/dbhome_1/ocm.localdomain_OEM not found.
Eu estava tentando parar o OMS quando eu recebi o seguinte erro “EM Configuration issue. /u01/app/oracle/product/11.2.0/dbhome_1/ocm.localdomain_OEM not found.”. Para resolver este problema, eu fiz os seguintes passos: Meu erro: [oracle@ocm bin]$ emctl status oms EM Configuration issue. /u01/app/oracle/product/11.2.0/dbhome_1/ocm.localdomain_OEM not found. Minha solução: [oracle@ocm MWOEM]$ export OMS_HOME=/u01/Oracle/MWOEM/oms11g [oracle@ocm MWOEM]$ export AGENT_HOME=/u01/Oracle/MWOEM/agent11g [oracle@ocm MWOEM]$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 [oracle@ocm bin]$ $OMS_HOME/bin/emctl start oms [oracle@ocm bin]$ $OMS_HOME/bin/emctl start oms Oracle Enterprise Manager 11g Release 1 Grid Control Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved. Starting WebTier… WebTier Successfully Started Starting Oracle…
Direct NFS: please check that oradism is setuid
Enquanto eu estava criando uma tablespace usando um NFS (Network File System), eu recebi o seguinte erro “Direct NFS: please check that oradism is setuid” no alertSID.log . Para resolver este problema, eu fiz os seguintes passos: ls -ld $ORACLE_HOME/bin/oradism chmod u+s oradism ou chmod 4755 (Onde o 4 indica SUID bit set, 7 para permissão total para o owner e 55 para permissão de leitura e execução para o grupo e outros) oradism. chown root:root Tente criar a tablespace usando NFS novamente. brunors
RMAN-05001: auxiliary filename “filename” conflicts with a file used by the target database
I was trying to do a duplicate database with the same SID to another hostname. Then, during my action I got the error “RMAN-05001: auxiliary “filename” conflicts with a file used by the target database”. To solve this problem I added the sintax “NOFILENAMECHECK” after the “duplicate target database to” command. Below, it is showed the script that I used: run { # Perform allocate channel allocate auxiliary channel t1 type ‘sbt_tape’ parms ‘ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)’; allocate auxiliary channel t2 type ‘sbt_tape’ parms ‘ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)’; allocate auxiliary channel t3…
ORA-21561: OID generation failed
I got the error “ORA-21561: OID generation failed” when I tried to connect in rman catalog. To solve this problem, you need to edit the /etc/hosts file and add the name of the machine (host). The text above I wrote in 2015 while I was using the database version 11g. Now in March 2020 I faced the same error and despite of the fact that the version in this new case be 12c and I was trying to clone a virtual marchine from another the solution was the same :…
ORA-0131:Insufficient Priviledges Debugging requires Debug connect session system priviledges
To solve this error , you have just to run a grant to the username that you can debugging and try again. SQL> grant debug connect session to username; brunors
Getting Instantiating disk: failed while an attempt to create a disk on OEL 6.3
While an attempt to create a disk, I got the follow error: ” Instantiating disk: failed”. Then, I did the follow steps: vi /etc/selinux/config and change the value selinux=enforcing to disabled. Restart your Operating System. Type it getenforce on prompt to your terminal. Try create the disk again through the command oracleasm createdisk DISK1 /dev/sdb1 Follow the example after the reboot: brunors