Perdeu o seu arquivo de dados system01 e seu banco não sobe no modo open? Não entre em pânico! // Lost your data file system01 and your base does not rise in open mode? Do not panic!
1) Se estiver logado na instância, desça o banco. // If you are logged into the instance , go down the base.
sql> shutdown abort;
2) Acesse o rman. // Access the rman.
$ rman target /
3) Suba o banco em modo de manutenção. // Climb the base in maintenance mode.
RMAN> startup mount;
4) Inicie o restore do ultimo backup. // Start restore the last backup.
RMAN> restore database 1;
Obs: se você não lembra o número relativo ao arquivo de dados, basta digitar: //
Note : If you do not remember the number for the data file , just type :
RMAN> report schema;
5) Faça o recover do arquivo de dados system01. // Do system01 recover the data file.
RMAN> recover datafile 1;
6) Agora mude o banco para o estado aberto. // Now change the bank to the open state.
RMAN> alter database open;
7) Verifique se tudo está okay. // Make sure everything is okay.
RMAN> validate database;
Até a próxima!! // To the next!!
My Linkedin: https://www.linkedin.com/in/salom%C3%A3o-netto-0667851a?trk=nav_responsive_tab_profile
1) Se estiver logado na instância, desça o banco. // If you are logged into the instance , go down the base.
sql> shutdown abort;
2) Acesse o rman. // Access the rman.
$ rman target /
3) Suba o banco em modo de manutenção. // Climb the base in maintenance mode.
RMAN> startup mount;
4) Inicie o restore do ultimo backup. // Start restore the last backup.
RMAN> restore database 1;
Obs: se você não lembra o número relativo ao arquivo de dados, basta digitar: //
Note : If you do not remember the number for the data file , just type :
RMAN> report schema;
5) Faça o recover do arquivo de dados system01. // Do system01 recover the data file.
RMAN> recover datafile 1;
6) Agora mude o banco para o estado aberto. // Now change the bank to the open state.
RMAN> alter database open;
7) Verifique se tudo está okay. // Make sure everything is okay.
RMAN> validate database;
Até a próxima!! // To the next!!
My Linkedin: https://www.linkedin.com/in/salom%C3%A3o-netto-0667851a?trk=nav_responsive_tab_profile
Ola, já tive um problema deste e como a tablespace SYSTEM tinha vários DBF e só recuperei um (o que estava com problema) acabou que ficamos um problema de corrupção do catálogo. Na época a recomendação da Oracle foi que sempre que fosse necessário recuperar a SYSTEM, fosse feita a recuperação de todos os DBFs.
ResponderExcluirAtt,
Dayse Engemann