Oracle Third Party Backup tools

What are some third party backup programs that people are using with oracle these days? Also when using third party backup tools, do these tools shutdown the database while backing up? Does the Archive Log mode need to be enable as well? Not big on Oracle so simple answers would work.
thanks.

I wouls suggest to go with RMAN. it's best tool and free.....Best third party backup tool is BMC SQL Backtrack.

Similar Messages

  • Error with third party backup tool

    Hello Experts,
    We are using Veritas netbackup to take backups.
    Veritas backup is showing error 6 after running 7 different successful streams and when I checked from SAP  (DB12) it shows successful backup of the system.
    Can you pls explain why netbackup is showing error 6?
    Also what files exactly get copied in offline backup? Does it include redo log files>
    Thanks in Advance.

    Hi Federico,
    This is what I've in the directory, I can't  understand a single line.
    /usr/openv/netbackup/logs/user_ops/dbext/logs
    vxbsa.1256439632.19076.files.1         vxbsa.1256439632.19076.prog.2.pcb_std  vxbsa.1256626673.19798.files.1
    vxbsa.1256439632.19076.files.1.lock    vxbsa.1256439632.19076.prog.3.pcb_std  vxbsa.1256626673.19798.files.1.lock
    vxbsa.1256439632.19076.files.2         vxbsa.1256439632.19076.prog.4.pcb_std  vxbsa.1256626673.19798.prog.pcb_std
    vxbsa.1256439632.19076.files.2.lock    vxbsa.1256439632.19076.prog.5.pcb_std  vxbsa.1256626745.19851.files.1
    vxbsa.1256439632.19076.files.3         vxbsa.1256439632.19076.prog.6.pcb_std  vxbsa.1256626745.19851.files.1.lock
    vxbsa.1256439632.19076.files.3.lock    vxbsa.1256439632.19076.prog.pcb_std    vxbsa.1256626745.19851.prog.pcb_std
    vxbsa.1256439632.19076.files.4         vxbsa.1256447583.24853.files.1         vxbsa.1256626818.20082.files.1
    vxbsa.1256439632.19076.files.4.lock    vxbsa.1256447583.24853.files.1.lock    vxbsa.1256626818.20082.files.1.lock
    vxbsa.1256439632.19076.files.5         vxbsa.1256447583.24853.prog.pcb_std    vxbsa.1256626818.20082.prog.pcb_std
    vxbsa.1256439632.19076.files.5.lock    vxbsa.1256605195.4569.files.1          vxbsa.1256627131.20443.files.1
    vxbsa.1256439632.19076.files.6         vxbsa.1256605195.4569.files.1.lock     vxbsa.1256627131.20443.files.1.lock
    vxbsa.1256439632.19076.files.6.lock    vxbsa.1256605195.4569.prog.pcb_std     vxbsa.1256627131.20443.prog.pcb_std
    I'll make sure to test the backup tapes  on test system.
    Thanks

  • Third party reporting tools

    I am trying to use a third party reporting tools.
    I have found one I like from Inetsoft.
    The problem I am having is running the sample code they provide. I keep getting the error of method not found in my package.class file. They have provide sample.java files, I am not sure how to get jdev to see the method.
    here is the .java code:
    package smart_package;
    import inetsoft.sree.*;
    import inetsoft.report.*;
    public class SimpleReplet extends BasicReplet
    public ReportSheet createReport(RepletRequest req) {
    StyleSheet report = new StyleSheet();
    report.addText("This is a very simple Replet!");
    return report;
    here is the event code:
    <event name="print_report" >
    <method class="smart_package.SimpleReplet" method="createReport"/>
    </event>
    my question is why do I get this error:
    Warning(43,73): report.uix: Parsing error, line 43, column 73: Could not find method createReport in smart_package.SimpleReplet
    also if anyone has a suggest on a third party reporting tool let me know.
    thanks

    I think that I figured out my own problem. my problem was method not found in class.
    here is the solution:
    I need a method with a EventResult to start the process. and then that method would call the third party method.
    package smart_package;
    import java.util.*;
    import java.text.*;
    import java.io.*;
    import inetsoft.report.*;
    import inetsoft.report.io.*;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.servlet.event.EventResult;
    import oracle.cabo.servlet.event.PageEvent;
    public class PrintReport
    public PrintReport()
    // HERE IS THE KEY!!!
    public static EventResult StartPrint(BajaContext context,
    Page page,
    PageEvent event)
    createReport();
    return null;
    public static void createReport()
    try
    StyleSheet report = new StyleSheet();
    report.addText("This is a simple report");
    PreviewView previewer = Previewer.createPreviewer();
    previewer.print(report);
    previewer.pack();
    previewer.setVisible(true);
    previewer.setExitOnClose(true);
    catch(Exception ignore) {}
    my event on the uix page:
    <event name="print_report" >
    <ctrl:method class="smart_package.PrintReport" method="StartPrint" />
    </event>

  • Third party backup software support for dataguard configurations

    Any Oracle document about the subject?
    I would be interested in an answer about backupexec 2010 r2 in particular, because reading the manual for its oracle agent there is information about Oracle/RMAN and RAC support, but nothing about Dataguard integration, that could be a value added.
    Anyone using third party backup agents in a Dataguard configuration?
    Interested in version 11gR2 on Linux.
    Thanks,
    Gianluca

    yes, you should be able to use the full backup taken in middle and use the rest of the log backups taken afterwards to restore the database.while I do not use TSM, we use QUEST(DELL) LITESPEED, that takes full backup once a day and log backups
    every 15mins.
    if someone accidentally takes full backup in the middle of day with out 'copy only',
    log sequence will break and successive log backups depend on this full back up.
    while this should be prevented from happening in first place, you can still restore from native full backup and then apply log backups taken from third party taken after the  native Full backup.
    if this happens, I would restore the FULLBACKP with NORECOVERY using NATIVE SQL and then use  lite speed syntax to restore the log backups.Remember, native sql cannot read third party formatted backups(atleast litespeed), thats why I restore the full backup
    using native sql, since it was taken with native sql backup and log backups using litespeed syntax.
    Hope it Helps!!
    Thanks, well it was just a theory discussion we had about the issue. But none of us could find info on the internet easy to prove our point :) Thanks.

  • How to achieve Number Ranges in third party CRM tool and in SAP CRM

    Hello Guru's,
    My business requirement is I have to create LEAD from third party CRM tool to SAP CRM and vice versa i want to maintain number ranges for created lead in both side.
    How can I achieve this please provide me your valuable suggestions and document.
    Thank's In Advance

    Hi,
    In SAP IMG screen maintain the external number range in CRM  through the below path.
    CRM-Transactions-basic setting-Define Number range.
    Also maintain the same number range for lead in the third party crm.
    Regards,
    Ashish

  • EP integration with third party BI tools

    Hi,
    I was looking for information and pointers on EP integration with third party BI tools like Business Objects etc.  Would be grateful.
    Thanks,
    Madhu

    Thanks. We have a full fledged Business Objects reporting environment.  My question is:  As a beginner in the EP space, I would like to understand how to treat the  Business Objects environment as one of the content providers for the Enterprise Portal?  Are there any documents or manuals that talk about the integration of EP with Business Objects?  I know the question is too broad, but any pointers would be useful.

  • Third party backup software, how is the log sequence working?

    Me and a colleague had a discussion about how third party software and full backups locally on the SQL works together.
    If we use TSM that do full backups and then logbackups every hour in between for example.
    If I between the two full backups from TSM accidently do a "non copy-only" full backup do I then also break the whole log sequence backup from then and untill the next TSM backup is?
    Or can I use the full backup from my mistake and then take the log backups from TSM that occured after that fail and restore the database?
    I guess this depends on the third party backup software, but in my mind it should work but according to him it doesn't.
    Try to "paint" how I mean:
    I = full TSM backup
    - = log TSM
    F = my fail backup full but not copy only.
    I---F-------I
              ^ is where I would want to restore with both my full one and the logs from TSM. Hope you understand what I mean.

    yes, you should be able to use the full backup taken in middle and use the rest of the log backups taken afterwards to restore the database.while I do not use TSM, we use QUEST(DELL) LITESPEED, that takes full backup once a day and log backups
    every 15mins.
    if someone accidentally takes full backup in the middle of day with out 'copy only',
    log sequence will break and successive log backups depend on this full back up.
    while this should be prevented from happening in first place, you can still restore from native full backup and then apply log backups taken from third party taken after the  native Full backup.
    if this happens, I would restore the FULLBACKP with NORECOVERY using NATIVE SQL and then use  lite speed syntax to restore the log backups.Remember, native sql cannot read third party formatted backups(atleast litespeed), thats why I restore the full backup
    using native sql, since it was taken with native sql backup and log backups using litespeed syntax.
    Hope it Helps!!
    Thanks, well it was just a theory discussion we had about the issue. But none of us could find info on the internet easy to prove our point :) Thanks.

  • Third Party Ticketing Tool integration with solman service desk scenario

    Hi,
    I need any guidance on integration Of third Party ticketing tools like OVSD with the SAP Solution Manager Service Desk Scenario.
    Regards,
    Kaustubh.

    Hi Maheshwar,
    What I am trying to do is, try to maintain the data like,,
    Caller ID-- sender
    Assignment of workgroup--
    Search Code--
    Priority--
    and description--
    now some of these are constants that we need not determine every time.
    but my question is, can we maintain these as a set of parameters in the method definitionunder parameters tabjust similar to MAIL_HEADER...which is displayed in the mail alert.
    we already have a scenario maintained in the HPSD where it reads the mail picks up specific content based on key words, and creates a ticket.
    and If we can maintain these by modifying the method, then where can we maintain the multiple data/options for this
    And also please send me what were the steps u have done.
    U used a Z method or customized the Function module??
    Bcz in my case I think I will have to do both..
    Regards,
    Kaustubh.
    Edited by: kaustubh on Jun 19, 2008 6:32 PM

  • Third Party WCM tools integrated into SAP EP7

    Hi All,
    I am wondering if anybody has experiences with integrating a third party WCM tool with EP7 for intranet-style content in the portal, and whether an assessment versus Web Page Composer has been made?  I have looked at Web Page Composer but am interested in seeing what best-of-breed third party offerings are certified for integration to EP7 and how these compare.
    Points will be awarded for useful responses.
    Regards
    John

    Hi John,
    I've seen btexx easyWCM in some projects and although I do not like it, many users are quite content with the features.
    Afaik it is certified for SAP EP 7.0, have a look at it.
    regards,
    Christian

  • Access data from a third party warehousing tools in BEx WAD

    Hi,
           I would like to know whether it's possible to access data from a third party warehousing tools ( For eg: Cognos) in BEx Web Application designer. Any help would be appreciated.
    Thanks

    Hi,
    BEx Web Application designer is only integrated to BIW server. So We can not access data of other tools unless the data is stored in the BIW server as the data in any data target. 
    With rgds,
    Anil Kumar Sharma .P

  • Login window - Third party code/Tool/Gui????

    Hai Friends,
    Is there any third party code/tool/gui/ available for login frame.
    I want to store/keep all login/logout details -in a file.
    i need to store user names and passwords -encrypted in a file.
    The login frame(or a single frame with) Login,Cancel,Create new user,change password.
    Please guide me.
    Thank You

    Thanks for ur reply. I want to store the user name and passwords in encrypted form.
    i am using type4 jdbc3.0 driver to access Ms Sql Server.
    and i don't want to use any connection with the database until the user login. Also i don't want to keep the login/logout information in database-it could be much better if i use a file.
    please guide me!
    Expecting help from experts,
    MartinHilpert , Michal Dunn, Camickr, and others.

  • MSSCCI Provider to connect third party developer tool (PowerBuilder)

    Attempting to use the Microsoft Team Foundation Server MSSCCI Provider to connect third party developer tool (PowerBuilder) to TFS. Unfortunately, I am receiving a Nonspecific Error on the Initialization through the MSSCCI, and have not been able to find
    a resolution through internet searches

    Hi K,  
    Thanks for your post.
    What’s the version of your TFS?
    Which version of TFS MSSCCI Provider you tried to install?
    According the description in
    TFS 2013 MSSCCI Provider, it support the PowerBuilder 11.5, please confirm that. And you need installed the VS 2013 or Team Explorer 2013 on the same client. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Oracle Third Party Tools and Oracle Database

    Hi
    There are ample third party tools that can be used with an Oracle Database. But does Oracle have some support programs (recommendations which tools are best along with Oracle Database).
    So sort of link or document would be a great help.
    Adith

    Oracle isn't responsible if you have a bad experience with a third party tool (i.e. the tool doesn't do what you want it to do as well as you'd like it to do it). If the database is the source of the problem, Oracle support is happy to help diagnose and resolve the problem, though you may need to provide a test case that doesn't involve the third party tool. It's certainly not a violation of any license agreements to use a third party tool unless you allow the tool to do something you're not allowed to do (i.e. access the AWR repository if you haven't licensed that access).
    Justin

  • Ability to use external third party ETL tools removed?

    Hi,
    have just been looking the possibility of using a third party tool (Informatica, Business Objects Data Integrator) with NW2004s.
    It appears that there is no longer a suitable source systyem type or at least there isn't in my Ramp Up system (SP7).
    Does anyone know if the functionality required for this has been retired? Or is it still there behind the scenes and just needs to be used in a different way.
    Many thanks,
    Mike

    Hi Andreas,
    thanks for this.
    It used to be that you needed an RFC destination from BW to the third party ETL RFC server, and a dedicated Source System for this and then the BAPI loader was used.
    Not sure if I understand how this will be achieved with the 3.5x data sources as aren't these SAP only?
    In the External Systems area of the source systems tab, there are some entries for:
    RA 115     Oracle Applications 11i
    LF 205     Tealeaf 2.05B
    PD 020     SAP xPD
    So it sounds like I create these as a SAP source system having previous done the RFC config?
    Thanks for your help and a little more would be great!
    Regards,
    AB

Maybe you are looking for

  • How to get images to show in browsers after upload Muse 4

    After installing the new Muse 4 I uploaded my new site. None of the images show up in any browser I have. How do I solve this problem. www.lindabrewster.com Thanks Linda

  • Iphone 3gs no video to tv with apple cables and dock

    i have a 80gig classic 5th gen which i use with the apple component dock and cables to watch videos on my tv.however to get it to work correctly i have had to use a 3 plug scart adaptor for the connection at the back of the tv. discarding the compone

  • How to receive podcast in Mail

    Howdy I have been receiving a podcast in my Mail program for years-after I bought a new iMac w/ML, it no longer shows up. I would like to get the podcast back in my mail account, haven't found anythng here or on the net that will help-will appreciate

  • Message no :amoc001 the system couldnt automatically create a transfer docu

    hi, message no :amoc001 the system couldnt automatically create a transfer document hi all when i follow the steps in this link Message no. AMOC005 i just end up with the problem above when i tried to change the business area normally the system auto

  • h:messages  question

    Hi, I'm using JFS with RAD V6.0 and I have a form where I used the <h:messages component to display error messages. The problem that I'm having is if I do something on me bean and I display an error it display correct but if after the error displays