RMAN / channels and device types

Hello,
I have a question.
In the RMAN documentation (for instance in "Oracle Database Backup and Recovery Advanced User's Guide 10g Release 2") one can find the description / instructions how
to allocate RMAN channels and define the device types.
There are 2x described device types - DISK and SBT (Tape).
My question is:
IS IT POSSIBLE TO USE A PIPE AS A RMAN DEVICE TYPE ?
If it is not possible to define direct, perhaps there is a possibility to define it
indirect and to use a pipe to write data.
Regards.
Neitour

Thank you for the link. Is it this RMAN 'duplicate database' option, what you
would like to recommend me to use?
I think, it is not exactly what I really need. For 'duplicate database' I will need
to have as a source a backup of the database and not a running productive
database.
Is it correct?
If it is, it is not what I'd like to do.
I'd like to make a copy of a productive running database, which is placed on ASM
storage, to another server creating such a way a database also placed on ASM
storage. I'd like to do it directly. I think the best possible way can be
RMAN / BACKUP --> PIPE --> RMAN / RESTORE.
The issue is - how can I configure RMAN to write BACKUP into a PIPE and
to read data for RESTORE from a PIPE.
Any ideas?
Regards
Neitour

Similar Messages

  • Transport.of SAP script form , printer def and device type is not enaugh

    I transported the SAP script form , printer definition and device types of a thermal printer.
    On original system the printout is ok but on target system not. What should I do?

    Thank you for your fast answer
    As the matther of fact I am technical person. I think Output type belongs to application. However the difference is visible in  se71 ->Utilities->Printing test -> output device ->print preview.
    As I wrote I transpored corresponding. SAP script form , printer def and device type

  • RMAN Channels and output disks

    Hi everybody!
    This is for a Windows 2003, 8.1.7.4 db with 900gb (+/- 500gb of data).
    Reading a paper about RMAN performance from 2001, it states that the number of channels should be the number of disks where the backup is being written to (output disks).
    My question is, using a storage with, say, 2gb of cache (like an CX3-something), is it important to be specific ? Or a test-modify-test-modify-test is a commom approach to this?
    What do you think ?
    Best regards!

    When setting PARALLELISM the iterative process is probably going to be your best bet. Having an idea of how many independent disk you are writing to can give you some idea as to where to initially set your PARALLELISM to and then monitor your performance from that point adjusting the value if needed.

  • Difference between RMAN Allocate channel and Configure Channel

    Hello Sir,
    It is a very small problem that the more I study about RMAN I get more confused that what is the difference between Allocate Channel and Configure Channel.
    The thing I understand is that first we allocate channel and then after we configure it for uses.
    Pl. anybody make me clear if it is wrong and please tell me the right theory.
    Thanks and regards

    Hi,
    As Already Aman and Hemant K Chitale .. described the difference..
    Let me put up one thing one thing Ahead... !!
    CONFIGURE CHANNEL takes the same options used to specify one-time options with the ALLOCATE CHANNEL command. You can configure generic channel settings for a device type, that is, a template that is used for any channels created based on configured settings for that device.
    Example :-
    Note that if you use CONFIGURE CHANNEL to specify generic channel settings for a device, any previous settings are discarded, even if the settings are not in conflict. For example, after the second CONFIGURE CHANNEL command, which specifies only the FORMAT for configured disk channels, the MAXPIECESIZE for the disk channel is returned to its default value:
    CONFIGURE CHANNEL DEVICE TYPE DISK MAXPIECESIZE 2G;
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT /tmp/%U;
    If you manually allocate a channel during a job, then RMAN disregards any configured channel settings. For example, assume that the default device type is SBT, and you execute the following command:
    RUN
    ALLOCATE CHANNEL c1 DEVICE TYPE DISK;
    BACKUP TABLESPACE users;
    Ever thing is in ORACLE Documentation.. . (Pick out the things....)
    http://download-uk.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmconfb.htm
    Study or Go through Slow and Study... you can understnad ever thing...
    - Pavan Kumar N

  • Rman levl0 and lev1

    Hi,
    I have source- test01 and target-test02.
    I need to do a full backup levlel0 followed by level1 on teso1(source)which i have done.
    full backup -- RMAN> RUN {
    ALLOCATE CHANNEL d1 DEVICE TYPE DISK;
    BACKUP DATABASE PLUS ARCHIVELOG;
    }2> 3> 4>
    incremental backup-- BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE;
    Now how do i restore the test02(its up and running but we want it to be sync with test1, thats why we took a full backup) similiar to test01 with the help of these bkp files..??
    please advice?

    RMAN> RUN
    ALLOCATE CHANNEL c1 DEVICE TYPE disk format '/soft/oracle/product/11.2.0/dbs';
    RESTORE CONTROLFILE FROM '/soft/oracle/product/11.2.0/dbs/sb_t802371486_s81_p1';
    sql 'ALTER DATABASE MOUNT';
    RESTORE DATABASE;
    SWITCH DATAFILE ALL;
    RECOVER DATABASE;
    release channel c1;
    }2> 3> 4> 5> 6> 7> 8> 9> 10>
    using target database control file instead of recovery catalog
    allocated channel: c1
    channel c1: SID=129 device type=DISK
    Starting restore at 18-DEC-12
    channel c1: restoring control file
    channel c1: restore complete, elapsed time: 00:00:01
    output file name=/oradata/test02/control01.ctl
    output file name=/oradata/test02/control02.ctl
    Finished restore at 18-DEC-12
    sql statement: ALTER DATABASE MOUNT
    released channel: c1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of sql command on default channel at 12/18/2012 19:25:24
    RMAN-11003: failure during parse/execution of SQL statement: ALTER DATABASE MOUNT
    ORA-01103: database name 'TEST01' in control file is not 'TEST02'
    i have followed but i am having this error as i am using the dump in test02 but not test01 where we have taken the full backup so i guess the controlfiles backuedup are not able to get test02 information whic is causing this error.
    please advice..

  • Getting the error ORA-27001: unsupported device type

    Hi ,
    While I am starting to backup via RMAN I am getting the following error. I kept my backup files on my disk and configured the channel as
    RMAN> SHOW DEFAULT DEVICE TYPE;
    RMAN configuration parameters are:
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    RMAN> restore tablespace user_undo;
    Starting restore at 19-DEC-06
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 12/19/2006 17:00:36
    ORA-19554: error allocating device, device type: DISC, device name:
    ORA-27001: unsupported device type
    When I checked in the v$backup_device its giving my the following result
    SQL> SELECT * FROM V$BACKUP_DEVICE;
    DEVICE_TYPE
    DEVICE_NAME
    SBT_TAPE
    Could anyone please help me out.
    Thanks

    RMAN> SHOW DEFAULT DEVICE TYPE;
    RMAN configuration parameters are:
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    RMAN-03002: failure of restore command at 12/19/2006
    17:00:36
    ORA-19554: error allocating device, device type:
    DISC, device name:> ORA-27001: unsupported device type
    Is it possible that you have line similar to the following when you enter
    show all;
    CONFIGURE CHANNEL DEVICE TYPE DISC FORMAT <path>

  • RMAN channels

    O.S. Linux
    Oracle version: 10g/11g
    Hi,
    I've newbie with Oracle RMAN and in particular I did not understand the concept of channels (ALLOCATE CHANNEL TYPE disk......).
    I think it is the way to call side RMAN server processes that physically write the backup. RMAN can improve backup performance by parallelizing operations using multiple channels.
    What steps do I need to use RMAN and understand the ALLOCATE CHANNEL?
    How Can I allocate multiple channels simultaneously?
    Thanks in advance!
    Edited by: Raf Royal on Aug 30, 2012 2:14 AM
    Edited by: Raf Royal on Aug 30, 2012 2:17 AM

    I need a few scripts (step-by-step) for allocate channel on tape drive or other (sbt????), if possible with allocate channels manually within a RUN block.
    I found this example:
    RMAN> RUN
    ALLOCATE CHANNEL c1 DEVICE TYPE DISK FORMAT = '/backup/df/%U';
    ALLOCATE CHANNEL c2 DEVICE TYPE DISK FORMAT = '/backup/cf/%U';
    ALLOCATE CHANNEL c3 DEVICE TYPE sbt;
    BACKUP AS BACKUPSET # all output files are in backup sets
    # channel c1 backs up datafiles to /backup/df directory
    DATAFILE 1,2,3,4
    CHANNEL c1
    # channel c2 backs up control file copy to /backup/cf directory
    CONTROLFILECOPY '/tmp/control01.ctl'
    CHANNEL c2;
    BACKUP AS BACKUPSET
    # channel c3 backs up archived redo logs to tape
    ARCHIVELOG FROM TIME 'SYSDATE-14'
    CHANNEL c3;
    Can I make a single backup set across multiple channels or/and Can I make a multiple backup on single channel?
    What steps should I take to write a script like this?

  • RMAN channel allocation slow

    Hi,
    When I try to allocate a channel for backup in RMAN its taking huge time now.
    It was working fine a couple of days back.
    Can anyone help me with tracking the issue ?
    Even the basic allocation command takes huge time.
    Ex: Allocate channel n device type disk;
    Regards,
    Santhosh.

    Hi, please try debug the rman process with the next command and get us more information.
    CONFIGURE CHANNEL DEVICE TYPE DISK DEBUG=5 TRACE 1;
    Regards.

  • Rman Full and Archivelog backups

    I am scripting my rman stuff and it's part of a much larger Perl maintenance. I have nightly and hourly jobs. Nightly will do a full backup and hourly will do archivelog backup. Full backups take about 2-3 hours.
    My question is: is there a problem with running archivelog backups be running while I am doing a full backup. If system resources are not an issues, what are some arguments for or against it?

    Thanks Tychos.
    That is something that I've debated - if my full would be with Plus ArchiveLog or not. So, I've decided not to backup the log during a full backup.
    This is for my nightly:
    open (RMAN, "| rman target sys/$SYPASS\@$CSID catalog rman/$CATPSS\@catalog >$Rlog");
    print RMAN <<"END";
    run {
    allocate channel d1 device type disk format \'$HBDir/$HBFiles\';
    set controlfile autobackup format for device type disk to \'$HBDir/$ControlFile\';
    backup as compressed backupset database;
    crosscheck backup;
    delete noprompt obsolete;
    report need backup;}
    END
    close (RMAN);
    This is the hourly:
    open (RMAN, "| rman target sys/$SYPASS\@$CSID catalog rman/$CATPSS\@catalog >$Rlog");
    print RMAN <<"END";
    run {
    allocate channel d1 device type disk format \'$TempArchHBDir/$BUFile\';
    CROSSCHECK ARCHIVELOG ALL;
    set controlfile autobackup format for device type disk to \'$HBDir/$ControlFile\';
    backup archivelog all not backed up 1 times delete input;
    END
    close (RMAN);

  • RMAN channel issue

    Hi friends;
    I need one advice,Before start my rman backup i allocate channel like
    run
    ALLOCATE CHANNEL C1 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C2 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C3 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C4 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C5 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C6 device type 'sbt_tape' ;
    ALLOCATE CHANNEL C7 device type 'sbt_tape' ;
    BACKUP SCRIPT HERE
    RELEASE CHANNEL C1;
    RELEASE CHANNEL C2;
    RELEASE CHANNEL C3;
    RELEASE CHANNEL C4;
    RELEASE CHANNEL C5;
    RELEASE CHANNEL C6;
    RELEASE CHANNEL C7;
    Backup is very slow db size almost 5 Tb and almost it takes 4-5 hours.We use virtaul disk library(AIX TSM) My question is there any way to run this process more faster, or is there any comment which i cant find to direct each channel different disk in rman script?
    Thanks
    Helios

    Hi,
    I have this kind of issues quite a few times. Restarting the master backup server (where backup software runs, TSM server in your case), or restarting tape library resolved the problem (I never found problem or resolved at ORacle/RMAN side).
    Currently i have a Linux server where backup speed is very very low and this is because of slow read from the file system which is on my storage for which my vendor asks to install latest storage firmware. So, if your file system IO is OK, you can try resolving efforts to be ishifted at tape library or backup server side.
    Thanks

  • Rman Channel 2 to network drive

    I have configure the channel 2 to mapped network drive. Both are on Windows 2003 platform.
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT 'D:\Rman\backup_db_%d_S_%s_P_%p_T_%t'MAXPIECESIZE 1024m;
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT 'Z:\backup_db_%d_S_%s_P_%p_T_%t'MAXPIECESIZE 2048m;
    Channel 1 backup is ok, but there is a error given for channel 2
    channel ORA_DISK_2: starting piece 1 at 09-JUL-08
    RMAN-03009: failure of backup command on ORA_DISK_2 channel at 07/09/2008 09:46:40
    ORA-19504: failed to create file "Z:\BACKUP_DB_BACK_S_33_P_1_T_659612766"
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.

    Oracle doesn't support network drives.
    You would need to run Oracle as domain administrator. This poses security risks.
    This is why Oracle doesn't support this.
    Sybrand Bakker
    Senior Oracle DBA

  • Device type for HP Officejet 7700

    Good Day;
    I have a problem with SAP priniting on HP officejet 7700(color All in one). Its not printing with SAPWIN default . I used device type HP laser jet 1160 and its printing fine( only black and white).
    I am looking to get the colour print out. I have searched for getting the matching device type for this printer , and am not winning.
    I have the SAPNOTE mentioning the list of SAP supported printers and device type ,  this printer is not in the list.
    Your help is highly appreciated .
    Regards
    Seethy

    Hi ;
    I tried to create a device type using SPAD and just copy the parameters and print controls from other device type HP laserget 1160. But its not working. Should I copy the drivers from OS level? Please assist me in creating a new device type.
    Your help is much appreciated.
    regards
    seethy

  • Regarding device type setup

    I'm using f-58 for CHECK printing. I'm using canon lbp2900b printer to print with page format LINE_22. when i try to take printout its showing error "DEVICE TYPE SAPWIN DOESNOT SUPPORT FOR THE PAGE FORMAT". can anyone have solution.

    Hi Divya,
    Its as simple, Go to SPAD->Full Administration->Device Types.
    It will help you with page formats and output devices associated.
    For better understanding on the steps here goes:
    Check Nicks Reply:
    [Page format and device type assign|Device type does not support page format;
    Edited by: K.Manas on Jan 4, 2011 8:54 AM

  • Error - Device type unsuitable for ADS documents

    Hi,
    I have created a print form using transaction SFP and i am doing test from transaction SFP
    (Test function module )
    /1BCDWB/DOCPARAMS
    YCTC                                  0000000000
    YCTCUSAGE                             0000000000
    Once i press f8 system asking for printer,  then i have given printer name as LOCL and select print preview. then system giving error as
    Cannot find PDL type for output device locl and Device type unsuitable for ADS documents
    Can i anybody give info what i am doing wrong.
    I have tested with FP_TEST_03 that also giving the same error

    Hi,
    I have tried with LP01 and with some other printers in the network its giving error that "Call contained error (02)"
    I tried with all FP_TEST*
    but no results

  • ANM, ACE module device type

    I have a pair of ACE modules installed and maintained through ANM.  We
    started with ANM 2.X and recently upgraded to 3.0.
    The ACE modules were running code A1(6.3) and are now on A2(2.3).
    ANM is identifying the devices as Device Type ACE v1.0, and device types
    seem to limit the features that ANM exposes for configuration.
    The GUI does not expose the HTTP/SSL rewrite features in Expert mode, but I
    can configure the devices in the CLI.
    I have been unable to find an info on how devices are identified, or if they type
    can be changed..
    The exact module installed is a ACE20-MOD-K9.  Can anyone shed some light
    on if this is an 'ACE V1.0' and if not, how to convince ANM of the correct type?

    Just a thought - when you upgraded did you change the default www user password on the ACEs? I remember the upgrade instructions instructing that this step was necessary to allow manipulation of the configuration via xml (which I believe the ANM tool requires to exercise its full functionality).

Maybe you are looking for

  • Install missing plugins error while opening forms in EBS R12

    Hi, I installed EBS R12 in my desktop through vm ware. my host os is windows xp and my guest os is oel 5.3. Now when i am trying to open any form based window through OAM in firefox browser, install missing plug ins error occurs. How can i open forms

  • My MAC won't display images from websites, all of a sudden. Any ideas?

    My e-mail works fine and includes pictures, but websites only download text.

  • Star Schema and Cubes

    Hi, I'm learning the basic concept of data warehousing and I've some question in this regards. 1) I want to know, are we have to first create star schema and tables according to that star schema in dbms, from that star schema we have to built cubes O

  • HTML Encoding issue

    I'm calling a web sevice that needs to pass an HTML encoded string. So, I encoded the string using cl_http_utility=>escape_html and it looks OK in the debugger (i.e. "<"). However, the web service throws an error and when I look at the ICM logs I see

  • Default ABC Assignment Group in Planning Parameters

    What impact if any does the Default ABC Assignment Group really have on the planning parameters in ASCP if any? Thanks in advance