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…

Inicializando o banco de dados, o OMS e o agent em um ambiente que usa OEM (ORACLE ENTERPRISE MANAGER) 11G

  É muito simples iniciar o banco de dados, o OMS e o agent em um ambiente que usa OEM. Você somente precisa setar as variáveis de ambiente e efetuar um start como abaixo: ##START DB export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 export ORACLE_SID=OEM sqlplus “/as sysdba” startup select instance_name, status, host_name from gv$instance; [oracle@ocm agent11g]$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 [oracle@ocm agent11g]$ export ORACLE_SID=OEM [oracle@ocm agent11g]$ sqlplus ” /as sysdba” SQL*Plus: Release 11.2.0.3.0 Production on Thu Oct 22 19:53:29 2015 Copyright (c) 1982, 2011, Oracle.  All rights reserved. Connected to an idle instance. SQL> startup ORACLE…

Parando o banco de dados ,o OMS e o Agent em um ambiente que usa OEM (ORACLE ENTERPRISE MANAGER) 11G

  É muito simples parar o banco de dados, o OMS e o agent em um ambiente que usa OEM. Você somente precisa setar as variáveis de ambiente e configurar uma parada correta como abaixo: ##STOP DB export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 export ORACLE_SID=OEM sqlplus “/as sysdba” select instance_name, status, host_name from gv$instance; shutdown immediate   [oracle@ocm ~]$ sqlplus ” /as sysdba” SQL*Plus: Release 11.2.0.3.0 Production on Thu Oct 22 19:31:21 2015 Copyright (c) 1982, 2011, Oracle.  All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 – Production With the…

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…

Configurando o repositório do yum para OLE 5.4

Para configurar o repositório do yum para OLE ( Oracle Enterprise Linux) 5.4 você deve seguir os seguintes passos: 1-cd /etc/yum.repos.d 2-wget http://public-yum.oracle.com/public-yum-el5.repo 3- Edite o arquivo /etc/yum.repos.d/public-yum-el5.repo , onde os valores  [el5_u5_base ] e [ol5_u5_base] são iguais a  enabled=0 , mude para  1. Referências: Oracle®  Sun Server X2-4 (formerly Sun Fire X4470 M2) Installation Guide for Linux Operating Systems Installing Oracle Unbreakable Enterprise Kernel for Linux Using Local or Remote Console   brunors

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

Configurando um banco de dados Oracle 11g para usar Bigfile Tablespace

  Para configurar um banco de dados para usar Bigfile Tablespace  (tipo de tablespace que usa um único datafile chamado bigfile <> smalffile (padrão)) e somente é “locally managed tablespace with automatic segment space management”, você deve seguir os seguintes passos: —   Configure o banco de dados para usar  BIGFILE TABLESPACE ALTER DATABASE SET DEFAULT BIGFILE TABLESPACE; — Verificaro o tipo de tablespace padrão no banco de dados: SELECT PROPERTY_VALUE FROM DATABASE_PROPERTIES WHERE PROPERTY_NAME = ‘DEFAULT_TBS_TYPE’; —  Exemplo para criar uma Bigfile Tablespace: CREATE BIGFILE TABLESPACE BIGTECHDATABASKET DATAFILE ‘/u01/app/oracle/oradata/bigtechdatabasket.dbf’ SIZE…

CALIBRATION I/O ORACLE

Some note from Oracle’s documentation “Applications that spend the majority of CPU time waiting for I/O activity to complete are said to be I/O-bound.Prerequisites for I/O Calibration”. Values to parameters timed_statistics=TRUE “When using file systems, asynchronous I/O can be enabled by setting the FILESYSTEMIO_OPTIONS initialization parameter to SETALL.” DBMS_RESOURCE_MANAGER.CALIBRATE_IO procedure SET SERVEROUTPUT ON DECLARE lat INTEGER; iops INTEGER; mbps INTEGER; BEGIN — DBMS_RESOURCE_MANAGER.CALIBRATE_IO (<DISKS>, <MAX_LATENCY>, iops, mbps, lat); DBMS_RESOURCE_MANAGER.CALIBRATE_IO (2, 10, iops, mbps, lat); DBMS_OUTPUT.PUT_LINE (‘max_iops = ‘ || iops); DBMS_OUTPUT.PUT_LINE (‘latency = ‘ || lat); dbms_output.put_line(‘max_mbps = ‘ ||…

Check/Example Oracle Requirements to Install Software 11.2.0.3 on Oracle Linux 5.4 – 32 bits

 — Confirm ssh package rpm -qa |grep ssh  — Oracle Linux 5 and 4 yum install oracle-validated Disk Space for Oracle software: Requirement for Software Files (GB)     4.5G + Disk Space for Data Files (GB) 1.7G =  6.2 GB Packages Oracle Linux 5: binutils-2.17.50.0.6 compat-libstdc++-33-3.2.3 elfutils-libelf-0.125 elfutils-libelf-devel-0.125 elfutils-libelf-devel-static-0.125 gcc-4.1.2 gcc-c++-4.1.2 glibc-2.5-24 glibc-common-2.5 glibc-devel-2.5 glibc-headers-2.5 kernel-headers-2.6.18 ksh-20060214 libaio-0.3.106 libaio-devel-0.3.106 libgcc-4.1.2 libgomp-4.1.2 libstdc++-4.1.2 libstdc++-devel-4.1.2 make-3.81 sysstat-7.0.2 OS Groups: 1-OSDBA group (dba) 2-OSOPER (oper) 3- OSDBA group for ASM (asmdba) From Oracle’s documentation “The Oracle Grid Infrastructure software owner (typically, grid) must…

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…