1) Traditional hot backup - A script ? Can I have a script ?
I am told that RMAN is not so good under 8i ?
Main Topics
Browse All TopicsHello Gurus,
I am to maintain a Oracle Application 8.1. that is not supported any more by the application developer.
Since I am the IT there , so I have that burden...
I cloned my server...and it is now running... ok...
I need a backup strategy so I am safe no matter what... so I can recover in case of pb..
I got a script from the net.. that dos stop the services... copies the files (index and tables...)
then re-mount the services...
My pb is that sometimes... (and it happened... ) the services are not being re-started..and we need to re-start them manually..
which requires a manual intervention... which I am to avoid.
I am now running the exp command to dump the whole tables without compression...
is that enough ?
any other "hot" backup available that would give us a "recoverable" backup ?
thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
>>I am told that RMAN is not so good under 8i ?
By who and what reasons did they give?
True, earlier versions of RMAN had less capability and options, but if used carefully, it does the job fine.
However, if you are running unsupported, it is up to you to choose what you can manage. RMAN can do backup in image or backupset format. Images are the same as doing hot backups manually, however, RMAN has the advantage of less overhead, because it can backup a datafile without putting the tablespace into HOT BACKUP mode (which causes some performance issue).
For COLD and HOT BACKUP scripts, see schwertner's post here (section B is HOT BACKUP): http://www.experts-exchang
For an RMAN hot backup, see my post here:
http://www.experts-exchang
I was searching the net and I came across this script.
can U pls confirm that this will "do the job" (full backup of the system ?)
**************************
connect sys/oracle as sysdba
alter system switch logfile;
alter system archive log all;
set serveroutput on size 1000000
set echo off
spool G:\hotbackit.sql
declare
cursor c1 is select name from v$tablespace;
cursor c2 (vname in varchar2) is select FILE_NAME from dba_data_files where tablespace_name = vname;
begin
for rec in c1 loop
dbms_output.put_line('alte
for rec2 in c2 (rec.NAME) loop
dbms_output.put_line('host
end loop;
dbms_output.put_line('alte
end loop;
end;
/
spool off
G:\hotbackit.sql
**************************
Business Accounts
Answer for Membership
by: mrjoltcolaPosted on 2009-10-30 at 06:21:07ID: 25702637
8i has two hot backup options. Both require your database to be running in archivelog mode.
/articles/ 8i/Recover yManager8i .php
1) Traditional hot backup - A script that puts your tablespaces in backup mode, copies the datafiles, then takes them out of hot backup mode.
2) RMAN - See the hot backup section on this page:
http://www.oracle-base.com
As for help if you need more info.