Tagged Questions
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
719 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
3k 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
38 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
57 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
2answers
155 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
191 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
943 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
122 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
135 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
281 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 ...