If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Help about RMAN

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-27-03, 07:15
zkajfez zkajfez is offline
Registered User
 
Join Date: Jan 2002
Posts: 161
Help about RMAN

I am running Oracle 8.1.7 on Win2000.
I would like to do backup of closed database.
So,I created directory F:\BACKUP.
I want that directory containing backup of my db.

Through RMAN,i entered command
run
{ allocate channel ch1 type 'F:\BACKUP';
BACKUP DATABASE;
}
and of course,it don't works 'cause wrong type for channel.
I realized type have to be disk,but how can
i specify "F:\BACKUP",and how that command must be entered?

Thanks,Zvonimir
Reply With Quote
  #2 (permalink)  
Old 01-27-03, 08:19
marist89 marist89 is offline
Registered User
 
Join Date: Oct 2002
Location: greenwich.ct.us
Posts: 279
Code:
ALLOCATE CHANNEL d1 TYPE DISK
   FORMAT 'F:\BACKUP';
BACKUP FULL DATABASE;
RELEASE CHANNEL d1;
__________________
Jeff Hunter
http://marist89.*************
Reply With Quote
  #3 (permalink)  
Old 01-27-03, 08:59
zkajfez zkajfez is offline
Registered User
 
Join Date: Jan 2002
Posts: 161
thanks!

Thanks,super!!!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On