Tagged Questions

rman or Recovery Manager is a CLI tool for performing backups or recoveries on an Oracle Database.

learn more… | top users | synonyms

4
votes
5answers
11k views

Backup/Restore database for oracle 10g testing using sqlplus or rman

Using Oracle 10g with our testing server what is the most efficient/easy way to backup and restore a database to a static point, assuming that you always want to go back to the given point once a ...
2
votes
2answers
3k views

How to import a Oracle 11g RMAN backupset on a new database server?

I have got a backupset of an Oracle 11g database which was created with RMAN. Now I want to import/restore the backupset onto a new and empty database server. I know that the command to create the ...
2
votes
2answers
1k views

Running RMAN Scripts with the job scheduler (Oracle)

Here's a good one for any Oracle gurus out there. I'm working on a web page that dynamically configures Oracle DB backup settings in a closed environment. Right now, I have everything set up to ...
1
vote
1answer
706 views

Oracle: changing the DB_RECOVERY_FILE_DEST without pre-existing folder?

I'm working on a web interface for modifying Oracle database backup settings. One of the options I want to give users is where to set the flash recovery area. As far as I know, the only way to change ...
1
vote
2answers
2k views

Unable to Recover Corrupt Oracle Datafile Block In SysAux

Oracle 10g on Suse 9.1 I'm looking after an Oracle DB. I have good SQL skills but I'm no DBA, (a diffence in job roles I have difficulty explaining to my non-IT savvy bosses!) I know enough to get ...
0
votes
0answers
20 views

rman logs not replacing log files with the same name [closed]

Historically, rman saved logs by replacing files of the same name so that the most recent set was always there, and logs from backup of older than the most recent set simply went away. Rman is ...
0
votes
1answer
29 views

save rman backup log files to networked location

Have tried spooling, have tried command line notation: log \\networked_location\rman.log Nothing works to get rman to save its own log files to a networked location. can save them online within the ...
0
votes
1answer
74 views

can not prepare primary database for standby database creation (for RMAN)

i was trying to prepare a primary database for standby database creation. while executing set_log_params.sql, we struck with an error "ORA-32017 failure in updating SPFILE" and "ORA-00439 feature not ...
0
votes
1answer
54 views

RMAN connecting to wrong target

When I run rman target / @mydb nocatalog cmdfile=%commands% msglog=%logfile%, I see connected to target database: OTHERDB (DBID=3786352837, not open). Help!
0
votes
2answers
146 views

Oracle Backup and recovery

new to oracle, I am having a oracle DB which we don't use anymore(version : 8.1.7.4). I want to take a backup and keep it for few more years(we don't know if we may need something later on) 1 >> ...
0
votes
1answer
174 views

How to connect to RMAN in Java?

I don't know how to connect to RMAN in Java. Simple request don't work when I use command non-SQL, like RMAN etc... I'm gonna to make program like "ORACLE Secure BackUP", but how they connected to ...
0
votes
3answers
877 views

Oracle RMAN big-endian to little-endian

I have an Oracle RMAN backup that was created on a Solaris SPARC box and is therefore in big-endian format. I wish to restore this backup to a Windows x86-64 based machine but have hit a roadblock due ...
0
votes
1answer
121 views

How can Restore in RMAN?

I want backup with RMAN and after that for example delete scott.dept and then restore it. but i can't :( I write it : 1)rman target sys/manager@db 2)in sql*plus shutdown immediate; startup ...
0
votes
2answers
130 views

Is this a valid way to use the Oracle Recovery Manager with the Oracle Job Scheduler?

First, I am creating an executable job: BEGIN DBMS_SCHEDULER.CREATE_JOB(job_name => 'PIPE_JOB', job_type => 'EXECUTABLE', job_action => 'RMAN PIPE TEST_PIPE_1 target / TIMEOUT = 60'); END; ...
0
votes
1answer
88 views

How to SNAP before RMAN in deCarta DDS?

Some of my routes don't work because the deCarta DDS doesn't find any arc near OLL and/or DLL and the server answers: RMAN|%S=Cannot find path origin%N=0|| How to make the server search a nearby ...
0
votes
1answer
270 views

Different backup location for DUPLICATE command

I am trying to clone a database from one machine to another using the DUPLICATE command in RMAN. For both machines the OS is Windows 2003 and the database software is 10.2.0.3. The problem is that ...