10gR2 -> 19c [message #686017] |
Tue, 24 May 2022 13:58 |
|
bwdavis59
Messages: 2 Registered: May 2022
|
Junior Member |
|
|
Hi,
First post. I'm the de facto dba of an Oracle 10gR2 database.
I've managed to install, and create an instance and database from the same scripts used to create the original database on my Oracle Linux 8.5 server.
I can start and stop the instance, select name from v$database, etc, and it all looks right.
I have moved a backupset to the local filesystem and pointed the db_recovery_file_dest to it.
I can run RMAN and SQLPLUS locally with no issues and connect to the database I created.
Following what works from experience, I run rman and then to restore the backup:
set DBID = 1387211105;
RUN
{
startup nomount pfile '/u01/app/oracle/.../initDB.ora';
restore controlfile from autobackup;
mount database;
restore database;
alter database open resetlogs;
}
exit
RMAN searches the recovery file destination dutifully looking for an AUTOBACKUP under the right SID name, and finds nothing.
I read that cross platform RMAN restores to newer versions did not work. Is this an example of that? Am I just stuck with a windows server?
Thanks in advance for taking the time.
|
|
|
|
Re: 10gR2 -> 19c [message #686019 is a reply to message #686018] |
Tue, 24 May 2022 15:39 |
|
bwdavis59
Messages: 2 Registered: May 2022
|
Junior Member |
|
|
Hi John
Thank you for your reply. To know it is not possible is a relief. I will read the upgrade document you indicated and move forward from there.
Kind Regards,
Bruce
|
|
|