If one needs to restore archive logs to disk and not apply them, for example in case when cloning a database manually and one is missing the archive logs from the source database and you need to restore the archive logs on the source machine. So using the following command one can restore the archive logs.
RMAN> connect target /
RMAN> run {
restore archivelog from logseq=34735 until logseq=34750 thread=1;
}
where:
from logseq – is the starting log sequence #
until logseq – is the end log sequence #
No comments:
Post a Comment