You can use DataPump to move data and metadata from one database to another.
Check the current Location:
SELECT directory_path FROM dba_directories WHERE directory_name = 'DATA_PUMP_DIR';
Change location to /oradata/backup
CREATE or replace directory DATA_PUMP_DIR as '/oradata/backup';
sexta-feira, maio 29, 2015
domingo, maio 24, 2015
Erro ao mover VM entre Host Hyper-V 2012
Problema: Estava tentando mover uma VM rodando no Hyper-V 2012 R2 para um host Hyper-V 2012, mas recebia a seguinte mensagem:
No log de eventos:
The Virtual Machine Management Service failed the request for a Virtual Machine migration at the destination host because no supported protocol version was provided in the request (expected version 4.4).
O problema é simples, mover uma VM de um host 2012 R2 para um 2012 não é suportada, não sei qual o motivo da Microsoft fazer isso, mas enfim, eu resolvi criando uma nova VM no host 2012 e usando o vhdx já existente.
Moving a Hyper-V virtual machine in Windows Server 2012 R2 to Hyper-V in Windows Server 2012 is not supported.
https://technet.microsoft.com/en-us/library/hh831435.aspx
No log de eventos:
The Virtual Machine Management Service failed the request for a Virtual Machine migration at the destination host because no supported protocol version was provided in the request (expected version 4.4).
O problema é simples, mover uma VM de um host 2012 R2 para um 2012 não é suportada, não sei qual o motivo da Microsoft fazer isso, mas enfim, eu resolvi criando uma nova VM no host 2012 e usando o vhdx já existente.
Moving a Hyper-V virtual machine in Windows Server 2012 R2 to Hyper-V in Windows Server 2012 is not supported.
https://technet.microsoft.com/en-us/library/hh831435.aspx
sexta-feira, maio 22, 2015
How to auto-start service in linux
If you need to configure services in your linux system you can use a simple command chkconfig.
List all services and their status and whether they are stopped or started in each runlevel.
#chkconfig --list
This option adds a ntpd service for management
#chkconfig --add ntpd
The service is removed from chkconfig management
#chkconfig --del ntpd
Enable ntpd service to start on level 3.
#chkconfig --level 3 ntpd on
Disable ntpd service to start on level 4.
#chkconfig --level 4 ntpd off
List all services and their status and whether they are stopped or started in each runlevel.
#chkconfig --list
This option adds a ntpd service for management
#chkconfig --add ntpd
The service is removed from chkconfig management
#chkconfig --del ntpd
Enable ntpd service to start on level 3.
#chkconfig --level 3 ntpd on
Disable ntpd service to start on level 4.
#chkconfig --level 4 ntpd off
quinta-feira, maio 21, 2015
ssh: connect to host port 22: Connection timed out
Ao tentar efetuar copias com o comando scp em um host esxi, recebia a seguinte mensagem:
#ssh: connect to host Myserver port 22: Connection timed out
O ssh estava habilitado em ambos os host, após efetuar algumas verificações descobri que conexões SSH (saída) estão desabilitadas por padrão em um host esxi, para resolver esse problema bastou habilitar a regra (SSH Client), nas configurações do firewall do host esxi ( Aba Configuration - Security Profile - Firewall - Properties) conforme figura abaixo:
#ssh: connect to host Myserver port 22: Connection timed out
O ssh estava habilitado em ambos os host, após efetuar algumas verificações descobri que conexões SSH (saída) estão desabilitadas por padrão em um host esxi, para resolver esse problema bastou habilitar a regra (SSH Client), nas configurações do firewall do host esxi ( Aba Configuration - Security Profile - Firewall - Properties) conforme figura abaixo:
quinta-feira, maio 07, 2015
Gerenciando a TableSpace TEMPORARY no Oracle
Alguns comandos úteis para o gerenciamento da tablespace TEMPORARY no Oracle.
-- Verificando as tablespace temporárias
SELECT tablespace_name, file_name, bytes
FROM dba_temp_files
-- Criando um tablespace temporaria temp com o tamanho de 1 GB.
CREATE TEMPORARY TABLESPACE temp tempfile '/u01/app/oracle/oradata/mysid/temp01.dbf' size 1024M
-- Verificando a tablespace temporária padrão
SELECT * FROM DATABASE_PROPERTIES where PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
-- Verificando informações do tempfile
SELECT * FROM V$TEMPFILE
-- Alterando a tablespace temporary padrão para a TEMP
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMP;
-- Excluindo a tablespace temp
DROP TABLESPACE TEMP INCLUDING CONTENTS CASCADE CONSTRAINTS
-- Verificando as tablespace temporárias
SELECT tablespace_name, file_name, bytes
FROM dba_temp_files
-- Criando um tablespace temporaria temp com o tamanho de 1 GB.
CREATE TEMPORARY TABLESPACE temp tempfile '/u01/app/oracle/oradata/mysid/temp01.dbf' size 1024M
-- Verificando a tablespace temporária padrão
SELECT * FROM DATABASE_PROPERTIES where PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
-- Verificando informações do tempfile
SELECT * FROM V$TEMPFILE
-- Alterando a tablespace temporary padrão para a TEMP
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMP;
-- Excluindo a tablespace temp
DROP TABLESPACE TEMP INCLUDING CONTENTS CASCADE CONSTRAINTS
Assinar:
Postagens (Atom)