How to use multiple tape drive from single client when I want to backup single filesystem?

Hello All.
I want to backup 1 filesystem using 4 tape drives for reducing backup time.
In case of symantec veritas netbackup, they can user "NEW_STREAM" for multi-streaming backup.
Please anybody let me know that how to do use multiple tape drive for single client.
1. Backup Source server : Linux (1 client)
2. Backup Soucre :      /data1  (500GB)
    -> Current directory structure doesn't have sub directory under /data1, just files present under /data1
If direcotry struceture has a sub-direcotry like( /data1/aaa, /data1/bbb ), Is it availble to use multiple tape drives?
3. Tape Drive with OSB : LTO6 * 4 drives
Thank you.

You would have to create a different dataset for each sub-folder. If you only have files at the top level folder then even the NEW_STREAM option couldn't be used to split the job.
Organise it into folders and then create datasets in a client folder such as :
/usr/local/oracle/backup/admin/config/dataset/Linux/data1_aaa
/usr/local/oracle/backup/admin/config/dataset/Linux/data1_bbb
Then in the schedule you just specify the Linux folder. In each dataset you list the hostname and the folder name, such as :
include host Linux
include path /data1/aaa
Now it will create a new job for each dataset and therefore each folder.
Thanks
Rich

Similar Messages

  • How to use multiple tape drive for single filesystem on single client.

    Hello All.
    I want to backup single filesystem with multiple tape drive.
    Incase of Symantec veritas netbackup "NEW_STREAM" for multi-stream backup.
    Backup client has a  single backup filesystem like /data1  directory with 4 LTO6 drives.
    /data1 directory doesn't have a sub-direcotry, just present a files.
    If /data1 directory has a sub-directory like /data1/aaa, /data1/bbb, /data1/ccc , Is it possible to use multiple drives?
    Please anybody answer the questions.
    Thanks advanced.

    See how to use multiple tape drive from single client when I want to backup single filesystem?

  • How to use IMAC CD drive from MBA

    We have a new MBA i want to install a game that i have that came on a CD.  I have installed the game on our IMAC and am told that i can access the cd drive on the IMAC from the AIR to install things to the AIR that come on CD.
    How do i do this?  Any help will be greatly appreciated.  We are apple virgins.
    Ron

    It turns the complete Firewall off. Because OS X has great security to begin with the chances of your needing the Firewall for normal home use is pretty small. My suggestion is turn it off, install the software using CD Sharing and if you're still worried after you're done turn the Firewall back on.

  • How to use multiple hard drives with RnR??

    I am backing up my T61p's 500GB internal hard drives to an 750GB external USB. I just got a 1.5TB FreeAgent Seagate. I want to use that drive too to backup. I want to keep the backups that are currently on the 750GB. I simply want to *also* make a full backup to the 1.5TB. Is there an easy way to create multiple backups on multiple drives with Rescue & Recovery?
    Once you choose an initial destination (USB drive), there does not seem to be an easy way to start backing up to another drive. Did I miss something?
    Thanks,
    Michel

    Hello,
    Sorry you're having problems. Assuming you've already mounted the drive so that an external drive icon appeared on the desktop, what DO you see when you open it? ANY files?
    Did any of those "weird things" include okay/cancel windows?
    Is your external drive fat32, NTFS, or something else? OSX doesn't play nice with all types of partition types, so this information could help us help you.

  • How to remove / replace Tape Drives from SUN StorEdge L1000 ? Need document

    I have the User's guide but it does not provide any info. My sunsolve access does not allow me to see anything. Is there somewhere I can find this information ? Thank you

    you have the users guide and have looked at page 27?
    http://dlc.sun.com/pdf/805-4823-10/805-4823-10.pdf
    seems kinda easy... unless you can't open the doors...
    you might try this page...
    http://www.sunshack.org/data/sh/2.1/infoserver.central/data/syshbk/Systems/L1000/docs.html
    keep trying..
    haroldkarl

  • How to use multiple table in single control file?

    Hi,
    How to use multiple table and data file in sigle control file? I have a four table and four csv file i mean data file for that. I am running concurrent program to load the data from csv file to custom table. based on my input data file name, it has to take automatically from one control file.
    Can anyone share with me how can i acheive this?
    Thanks

    Hi,
    Can't we acehive like below. I don't this exactly corrcect.
    OPTIONS (SKIP=1)
    LOAD DATA
    INFILE << file name 1 >>
    APPEND INTO TABLE XXCZ_VA_SAMPLE1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
         PARENT_ITEM               "TRIM(BOTH FROM :PARENT_ITEM)"
    LOAD DATA
    INFILE << file name 2 >>
    APPEND INTO TABLE XXCZ_VA_SAMPLE2
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
         ITEM_NUMBER               "TRIM(BOTH FROM :ITEM_NUMBER)"
    )Edited by: orasuriya on Sep 14, 2009 3:03 AM

  • How To Use Multiple Currencies in single payroll ........

    Dear All
    Can you help me How To Use Multiple Currencies in single payroll?
    with regards
    User600722

    I am not a functional expert. but ML Note 150173.1 (which is quite old) states that this is not possible.
    Srini

  • How to call multiple strus actions froma single jsp

    how to call multiple strus actions froma single jsp, and that actions should be automatically called pls help me
    Thanks in advance

    how to call multiple strus actions froma single jsp, and that actions should be automatically called pls help me
    Thanks in advance

  • How to use multiple selection parameters in the data model

    Hi, after have looked all the previous threads about how to use multiple selection parameters , I still have a problem;
    I'm using Oracle BI Publisher 10.1.3.3.2 and I'm tried to define more than one multiple selection parameters inside the data template;
    Inside a simple SQL queries they work perfectly....but inside the data template I have errors.
    My data template is the following (it's very simple...I am just testing how the parameters work):
    <dataTemplate name="Test" defaultPackage="bip_departments_2_parameters">
    <parameters>
    <parameter name="p_dep_2_param" include_in_output="false" datatype="character"/>
    <parameter name="p_loc_1_param" include_in_output="false" datatype="character"/>
    </parameters>
    <dataTrigger name="beforeReport" source="bip_departments_2_parameters.beforeReportTrigger"/>
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    select deptno, dname,loc
    from dept
    &p_where_clause
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_DEPT" source="Q2">
    <element name="deptno" value="deptno"/>
    <element name="dname" value="dname"/>
    <element name="loc" value="loc"/>
    </group>
    </dataStructure>
    </dataTemplate>
    The 2 parameters are based on these LOV:
    1) select distinct dname from dept (p_dep_2_param)
    2) select distinct loc from dept (p_loc_1_param)
    and both of them have checked the "Multiple selection" and "Can select all" boxes
    The package I created, in order to use the lexical refence is:
    CREATE OR REPLACE package SCOTT.bip_departments_2_parameters
    as
    p_dep_2_param varchar2(14);
    p_loc_1_param varchar2(20);
    p_where_clause varchar2(100);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    CREATE OR REPLACE package body SCOTT.bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    if (p_dep_2_param is not null) --and (p_loc_1_param is not null)
    then
    p_where_clause := 'where (dname in (' || replace (p_dep_1_param, '''') || ') and loc in (' || replace (p_loc_1_param, '''') || '))';
    else
    p_where_clause := 'where 1=1';
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    As you see, I tried to have only one p_where_clause (with more than one parameter inside)....but it doesn't work...
    Using only the first parameter (based on deptno (which is number), the p_where_clause is: p_where_clause := 'where (deptno in (' || replace (p_dep_2_param, '''') || '))';
    it works perfectly....
    Now I don't know if the problem is the datatype, but I noticed that with a single parameter (deptno is number), the lexical refence (inside the data template) works.....with a varchar parameter it doesn't work....
    So my questions are these:
    1) how can I define the p_where_clause (inside the package) with a single varchar parameter (for example, the department location name)
    2) how can I define the p_where_clause using more than one parameter (for example, the department location name and the department name) not number.
    Thanks in advance for any suggestion
    Alex

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • Is it possible to use multiple hard drives with iphoto?

    I am pretty new to Mac's so bear with me, I used to use multiple hard drives on my pc with my photos seperated by catagory in different hard drives. Is it possible to run iphoto with multiple hard drives without the photos loading onto my Imac? If so, How do I set it up. I have tried importing to a external drive, but when I check the file path of the photos it shows my Imac hd in the address. I seriously dont know why I cant just add the external hard drive as a library and have Iphoto work, Help

    There are instructions - and not the caveats - on how to do what you want below.
    However, you'e not quite grasping iPhoto:
    I used to use multiple hard drives on my pc with my photos seperated by catagory in different hard drives.
    When you do this, you're using the Finder (or file manager) to categorise the photos. All well and good, but why? That's exactly iPhoto's job. iPhoto is a database designed to help you manage your pics - including categorising them.
    Anyway:
    *How to do it:*
    Simply go to iPhoto Menu -> Preferences -> Advanced and uncheck 'Copy Files to the iPhoto Library on Import'.
    *What Happens:*
    Now iPhoto will not copy the files, but rather simply reference them on your HD. To do this it will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    *Some things to consider:*
    1. Importing and deleting pics are more complex procedures. You have to to put the files where they will be stored before importing them. When you delete them you'll need to remove the files from the HD yourself.
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    4. *Because iPhoto has no tools for managing Referenced Files, if, for some reason, the path to the photos changes then you could find yourself resolving aliases for +each photo in the Library+ one by one.*
    My own opinion:
    I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    If you really want to spread your photos across volumes like this, Aperture would be a better fit.
    Regards
    TD

  • Wiki: Using multiple hard drives, LVM & encryption

    I have lately found myself with the issue of having multiple hard drives and wanting to do LVM stuff & encryption with while retaining maximum flexibility. After scanning through wikis, manpages and forum entries I came up with a solution for myself. The only thing I don't cover with it is mounting while booting as I don't need and can't test it.
    I want to share the knowledge I gained and help other people find a solution faster and so I wrote a Wiki entry (first on my user page). I would now like to hear the opinion of the community regarding the following questions:
    Do you see any security risks with my solution (especially the part on storing the unencrypted keyfile on a ramdisk)?
    Do you think this text is worthy for a wiki entry or should I keep it in the forums?
    Do you spot any errors (typing or else)?
    Would you improve this article anywhere?
    Of course, if you have further comments, I would like to here them as well. And now without further ado: Using multiple hard drives, LVM & encryption.
    Regards,
    javex
    P.S.: As a small side question: Is my user page a good playground for article creation or would you recommend some other area where to do this (since here noone else could improve the article while in this early stage)?

    mwmmartin wrote:
    I have a 1 TB hard drive; but I have a 500GB and 250GB usb external hard drives.
    Wouldn't it be cool if I could make the two external hard drives a RAID drive and use Time Machine to use all the 750GB of external memory to do my backups???
    You can, but I would +*strongly recommend against+* it. See +Concatenated RAID+ in the Help for Disk Utility.
    There are several potential problems:
    Depending on how much data is on your 1 TB drive, 750 GB may not be enough to back it up. See #1 in Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum).
    To set up a +Concatenated RAID+ set, both drives will be erased.
    When (not if) either drive fails, you'll lose all the data on both.
    Both drives must be connected any time you do a backup or want to browse your backups.
    Especially with USB, if one drive wakes from sleep, or spins up, quickly enough, but the other one doesn't, the backup may fail and/or your backups may be corrupted.
    For now, it looks like my only solution is to go buy a bigger external hard drive and spend more money,,,
    That's your best solution +*by far.+* Anything else is taking a large risk with your backups.

  • How to Mount IBM Tape Drive on windows 2008 SAP Platform

    Hi Expert,
    What are the steps for Mount IBM Tape drive on windows 2008 SAP Platform on Sybase Database ?
    After mounting IBM Tape Drive on windows 2008 SAP Platform , can i use this for Sybase Backup purpose from DBACOKPIT ?
    Kindly reply me ASAP.

    Dear All,
    Problem Solved by below activity :-
    http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc38421.1572/doc/html/san1335472614455.html?resultof=%22%64%75%6d%70%22%20%22%64%61%74%61%62%61%73%65%22%20%22%64%61%74%61%62%61%73%22%20
    1> dump database pubs2 to "\\.\TAPE0"
    2> go
    1> load database pubs2 from \\.\TAPE0
    2> go
    Please review  any of these SAP Notes to see if you would be able to
    setup dump/load and then copy to tape as an option.
    1585981 SYB: Ensuring Recoverability for Sybase ASE  (has some
    comments about storing to tape drive)
    1588316 SYB: Configure automatic database and log backups
    1611715 SYB: How to restore a Sybase ASE database server (Windows)
    1618817 SYB: How to restore a Sybase ASE database server (UNIX)
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    Configuration DEVDB:
    1> sp_config_dump @config_name='DEVDB' ,
    2> @stripe_dir = "\\.\Tape0" ,
    3> @compression = '101' ,
    4> @capacity = '1520000040960' ,
    5> @verify = 'header'
    6> go
    Configuration DEVLOG:
    1> sp_config_dump @config_name='DEVLOG' with init,
    2> @stripe_dir = "\\.\Tape0" ,
    3> @compression = '101' ,
    4> @capacity = '1520000040960' ,
    5> @verify = 'header'
    6> go
    1> dump database DEV using config = 'DEVDB' with capacity = 87000000, init
    2> go
    1> dump transaction DEV using config = 'DEVLOG' with capacity = 87000000, init
    2> go
    and
    1> dump database DEV to "\\.\TAPE0" with   capacity = 87000000, init
    2> go
    1> dump transaction DEV to "\\.\TAPE0" with   capacity = 87000000, init
    2> go

  • How to use multiple ipods on one account

    I have an Ipod classic and just bought my sons two nano's how do I use these on the same account without changing my account info?

    Take a look here:
    How to use multiple iPods with one computer
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • How to delete multiple email messages from my Iphone 5c; email folder?

    How to delete multiple email messages from my Iphone 5C; email folder.

    there used to be option to keep last 50,100,200 messages/emails. We need that back. This is ridiculous to delete one by one.

  • How to use external hard drive and iTunes together?

    how to use external hard drive and iTunes together?

    Yes I did get to that part.... I went trough external to retrive itunes folder... When I selected the folder, it said that it was locked, choose another folder... I then went to my external again to my itunes folder and and used command I to see if folder was locked and it wasn't.... it was suggested on another forum to reboot.. which I did and still same problem... All I want to do is link my external hard drive that has my itunes playlist from another Mac to my new one.. and to also use the external as the main source for adding new songs to my playlist...

Maybe you are looking for

  • Download past purchases in iTunes on Mac

    Running iTunes on my Mac and when I try to download past purchases, I get: "This computer is already associated with an Apple ID. You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a

  • HT201210 My iphone 4 has no face time icon

    My iphone 4 has no face time icon

  • Trace files generated by Portal

    Our DBA has just sent me an email saying that Portal is generating "thousands of trace files" on the server with messages like this: *** SESSION ID:(8.11147) 2002-08-05 15:46:12.338 Traverse response tree: SOAP-ENV:Envelope: SOAP-ENV:Body: portal:ini

  • Where can I download and install AquaLogic.WCFilter.dll from?

    I have installed Oracle Webcenter's Accelerator for .Net and trying to browse the WSRP webservice (http://<MyIIS-Defaultwebsite>/wsrpproducer/1.0/WSRPBaseService.asmx) installed in my IIS but getting the following error. [NullReferenceException: Obje

  • Trying to hook up a badge intaller?

    Hey, I am trying to hook up a badge installer, but instead of using the samples from the various tutorials available, I am not using Flash Pro to create the badge, I am attempting to use Flash Catalyst ... but I have never worked with with Flex befor