понедельник, 18 октября 2010 г.

Lost of system datafile

Instance crashes with error: ORA-01243: system tablespace file suffered media failure

Restore to different location:
rman
startup mount;
run
{
set newname for datafile 'f:\test_system.dbf' to 'c:\project\orcl\test_system.dbf';
restore datafile 11;
switch datafile 11;
recover datafile 11;
}

Комментариев нет:

Отправить комментарий

Update BLOB

set define off DECLARE    vb1 CLOB := 'long text';    vb2 CLOB :=                 'long text';    vb3 CLOB :=              ...