ORA-19809: limit exceeded for recovery files ORA-19804: cannot reclaim

Quando a area de recovery files esta cheia, podemos tomar algumas medidas para resolver rapidamente o problema. Primeiro é aumentar a area verifique o tamamnho da area show parameter db_recovery_file_dest; Outra formar de verificar select (space_limit)/1024/1024/1024 “Totalspace”,(space_used)/1024/1024/1024 “USED”,(space_reclaimable)/1024/1024/1024 “RECLAIMABLE”, NUMBER_OF_FILES “NOOFFILES”, NAME “LOCATION” from v$recovery_file_dest; se tiver como aumentar a area, aumente a area com o comando abaixo ALTER SYSTEM SET db_recovery_file_dest_size=800G SCOPE=BOTH SID=’*’; se não for possivel , mude o llocal Outra forma mais[…]

Read more

Criando um Service no Oracle PDB

Para criar um service no PDB é bem simples. Verifique os serviços existentes select con_id, pdb, network_name from cdb_services where pdb is not null and con_id order by pdb; Criaremos um service chamado ZMS exec dbms_service.create_service(‘ZMS’, ‘ZMS’); Iniciando o service ZMS exec dbms_service.start_service(‘ZMS’); Salvando para o serviço iniciar automatico quando o banco subir alter pluggable database ZMSOLPDB1 save state; Verifique o novo serviço select con_id, pdb, network_name from cdb_services where pdb is not null and[…]

Read more

./roothas.pl -deconfig -force ./roothas.pl: line 8: =head1: command not found

./roothas.pl -deconfig -force./roothas.pl: line 8: =head1: command not found./roothas.pl: line 10: roothas.pl: command not found./roothas.pl: line 12: =head1: command not found./roothas.pl: line 14: roothas.pl: command not found./roothas.pl: line 15: parameter-file: No such file or directory./roothas.pl: line 16: path: No such file or directory./roothas.pl: line 17: path: No such file or directory./roothas.pl: line 18: [[-prepatch: command not found./roothas.pl: line 18: path: No such file or directory./roothas.pl: line 19: [-lockacfs]: command not found./roothas.pl: line 20: path: No[…]

Read more

Aplicando patch no instaladora antes da instalação

Apartir do Oracle 18 foi possível aplicar patchs no instalador antes de executar a instalação. Antes de iniciarmos, precisamos atualizar o Opatch com o usuario  root:Atualiza o OPatchcd /u01/app/oracle/product/19.3.0.0/gridrm -rf OPatchmkdir OPatchchown grid.oinstall OPatch/ com o usuario grid:Entre no diretorio onde esta o instaladorunzip -q p6880880_190000_Linux-x86-64.zipcp -rf OPatch/* /u01/app/oracle/product/19.3.0.0/grid/OPatch/ su – grid Vamos iniciar descompactando o instalador.cd /u01/app/oracle/product/19.3.0.0/gridunzip LINUX.X64_193000_db_home.zip Agora descompacte o patchunzip -q p33182768_190000_Linux-x86-64.zip Entre no $GRID_HOME e aplique o patch. com a opção[…]

Read more

ORA-00001: unique constraint (SYS.I_SOURCE1) violated

Tive esse problema  quando compilei uma package em um banco 11.2.0.4 “ORA-00001: unique constraint (SYS.I_SOURCE1) violated “ Para resolução do problema ,executei os passos abaixo: select * from sys.obj$ where name=’PACKAGE WITH HAVE PROBLEM’ após peguei os obj# do objeto e executei o delete dos mesmos SQL> delete from sys.obj$ where obj# = 28507131;SQL> delete from sys.obj$ where dataobj# = 26641112; Para finalizar verifiquei se existia vestígios do objeto na  SYS.SOURCE$ select * from SYS.SOURCE$[…]

Read more

Authentication denied: Boot identity not valid

Fala Galera! Alguns dias tive um problema em um manager server no weblogic 12c. Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to[…]

Read more

Verificando e Habilitando a option RAC

 Como verificar se a option Oracle RAC esta habilitada Entre no diretorio lib no Oracle Home $ORACLE_HOME/rdbms/lib Execute o comando : nm -r libknlopt.a | grep -c kcsm.o Se retorna 0 a option está desabilitada. Como habilitar a option RAC entre no diretorio $ORACLE_HOME/rdbms/lib e execute os comandos abaixo 1-  make -f ins_rdbms.mk rac_on 2- make -f ins_rdbms.mk ioracle após a execução a feature já estará habilitada.    

Read more

Erro -29548 Oracle: ORA-29548: classe de sistema Java informada: could not identify release specified in classes.bin

Pegue esse erro abaixo no EBS 12.2 após migrar o linux do rdbms do ebs, o rdbms estava na versão 11.2.0.4 e Linux OL6, para o Linux OL7 Erro -29548 Oracle: ORA-29548: classe de sistema Java informada: could not identify release specified in classes.bin foi detectado em FND_WEB_SEC.VALIDATE_LOGIN(u,p) O erro ocorre devido ao java do banco ter ficado invalido. Solução: execute sys.dbms_registry.loaded(‘JAVAVM’);execute sys.dbms_registry.valid(‘JAVAVM’);alter system set “_system_trig_enabled”=false scope=memory;alter system set java_jit_enabled=false;create or replace java system /[…]

Read more