Erro ORA-25226 após import com impdp

As vezes realizamos o import de um sistema que possui queue, normalmente após o import ocorre o seguinte erro: ORA-25226 dequeue failed queue not enabled for dequeue, para solucionar esse erro é bem simples, apos o import habilite novamente as queues. segue o comando abaixo: select para verificar a QUEUE SQL> select OWNER,NAME,QUEUE_TABLE,ENQUEUE_ENABLED,DEQUEUE_ENABLED from dba_queues where NAME=’EVENT_QUEUE’; OWNER NAME —————————— —————————— QUEUE_TABLE ENQUEUE DEQUEUE —————————— ——- ——- STRMADMIN EVENT_QUEUE EVENT_QUEUE_TAB NO NO execute o comando com sys[…]

Read more

ORA-31623: a job is not attached to this session via the specified handle

O erro ORA-31623 ocorre algumas vezes na hora de executar um expdp, isso ocorre devido o parametro streams_pool_size está com o valor 0 Vamos corrigir o problema. [oraclezm@zmdb1~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Sun May 12 17:11:42 2019 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 – 64bit Production With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP, Data Mining and Real Application[…]

Read more

RMAN-20020: database incarnation not set

Quando tentamos fazer a ressincronização do catálogo com o banco de dados de destino, se recebermos a menssagem RMAN-20020: database incarnation not set, então temos que redefinir o banco de dados para definir a encarnação para o atual.   Step 1 connect to  rman and connect to the target database with recovery catalog rman Recovery Manager: Release 11.2.0.4.0 – Production  Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.   connect target /[…]

Read more

AdminServer em Cluster?

Todos Sabemos que não é possível subir o Admin Server em Cluster, mas se ele for configurado corretamente, poderá ser iniciado iniciado em qualquer nó. O erro que mais ocorre quando tentamos subir o Admin Server em outro Nó do Cluster é: 1. weblogic.security.SecurityInitializationException: Authentication for user weblogic denied. 2. java.lang.IllegalStateException: Unable to perform operation: post construct on weblogic.security.SecurityService 3. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.jndi.internal.RemoteNamingService errors were found 4. java.lang.IllegalStateException: Unable[…]

Read more