Any good document for crontab

I am planning to work with crontab to excute RMAN backup day to day basis
please send the good document or steps to follow for crontab

Here are a few:
crontab administration usage and troubleshooting techniques
Unix Webserver Crontab Basics
Introduction to crontabs and cronjobs
Using cron basics
But as the previous poster indicated, man crontab is your friend.

Similar Messages

  • Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?

    Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?
    I found one such tool "Fortify" in the below link. Are there any such kind of tools available which supports SharePoint?
    Reference: http://www.securityresearch.at/en/development/fortify/
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Hi Amalaraja Fernando,
    I'm not sure that there is one more tool that combines all these features. But you may take a look at these solutions:
    SharePoint diagnostic manager
    SharePoint enterprise manager
    What is SPCop SharePoint Code Analysis?
    Dmitry
    Lightning Tools Check
    out our SharePoint tools and web parts |
    Lightning Tools Blog | Мой Блог

  • Where can i get good documents for XML

    Hai,
    I am new to XML..I like to know where can i get good documents for XML that can be downloaded.
    regards,
    Mathan
    null

    You can order online from here and here.
    Regards,
    -rh

  • Need the good documents for AlV

    Hi,
    I am new to Alvs. Plz send me good documents for same. In this AlV pgm how to activate filter button?
    type-pools: slis.
    DATA: it_spfli TYPE TABLE OF spfli ,
          it_cat TYPE SLIS_T_FIELDCAT_ALV,
          wa_cat TYPE slis_fieldcat_alv,
          checkbox(1)    type c.
    data: itab1 type  SLIS_T_SORTINFO_ALV ,
          WA TYPE SLIS_SORTINFO_ALV.
    *data: itab2 type  SLIS_T_SORTINFO_ALV ,
         WA1 TYPE SLIS_SORTINFO_ALV.
          START-OF-SELECTION.
    SELECT * FROM spfli  INTO TABLE it_spfli.
    IF it_cat is initial.
      clear wa_cat.
    wa_cat-col_pos   = 1.
    wa_cat-fieldname = 'CARRID'.
    wa_cat-datatype  = 'CHAR'.
    wa_cat-inttype   = 'C'.
    wa_cat-intlen    = 3.
    wa_cat-seltext_l   = 'Airline Code'.
    append wa_cat to it_cat.
    clear wa_cat.
    wa_cat-col_pos   = 2.
    wa_cat-fieldname = 'CONNID'.
    wa_cat-datatype  = 'NUMC'.
    wa_cat-inttype   = 'N'.
    wa_cat-intlen    = 4.
    wa_cat-seltext_l   = 'Flight conn no'.
    append wa_cat to it_cat.
    WA-FIELDNAME = 'CARRID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    *ENDIF.
    CLEAR WA.
    CLEAR ITAB1.
    WA-FIELDNAME = 'CONNID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
       I_INTERFACE_CHECK              = ' '
       I_BYPASSING_BUFFER             =
       I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = ' '
       I_CALLBACK_PF_STATUS_SET       = ' '
       I_CALLBACK_USER_COMMAND        = ' '
       I_STRUCTURE_NAME               =
       IS_LAYOUT                      =
        IT_FIELDCAT                    = it_cat
       IT_EXCLUDING                   =
       IT_SPECIAL_GROUPS              =
        IT_SORT                        = ITAB1
       IT_FILTER                      =
       IS_SEL_HIDE                    =
       I_DEFAULT                      = 'X'
       I_SAVE                         = ' '
       IS_VARIANT                     =
       IT_EVENTS                      =
       IT_EVENT_EXIT                  =
       IS_PRINT                       =
       IS_REPREP_ID                   =
       I_SCREEN_START_COLUMN          = 0
       I_SCREEN_START_LINE            = 0
       I_SCREEN_END_COLUMN            = 0
       I_SCREEN_END_LINE              = 0
       IR_SALV_LIST_ADAPTER           =
       IT_EXCEPT_QINFO                =
       I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER        =
       ES_EXIT_CAUSED_BY_USER         =
       TABLES
         T_OUTTAB                       = it_spfli.
    EXCEPTIONS
       PROGRAM_ERROR                  = 1
       OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    REPORT zazualvgrid .
    DATA: grid1 TYPE REF TO cl_gui_alv_grid,
    ok_code LIKE sy-ucomm,
    mycontainer TYPE scrfname VALUE 'CUST',
    container TYPE REF TO cl_gui_custom_container.
    DATA : t_ekpo TYPE TABLE OF zekpo.
    DATA : v_save,
    v_repid LIKE sy-repid,
    v_variant TYPE disvariant.
    INCLUDE zsta.
    INCLUDE zpbo.
    START-OF-SELECTION.
    PERFORM set_data.
    END-OF-SELECTION.
    CLEAR v_variant.
    v_repid = sy-repid .
    v_variant-report = v_repid.
    v_save = 'A'.
    CALL SCREEN 786.
    FORM CREATE_CON *
    FORM create_con.
    IF container IS INITIAL.
    CREATE OBJECT container EXPORTING
    container_name = mycontainer
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    titel = sy-repid
    txt2 = sy-subrc
    txt1 = 'The control could not be created'(510).
    TXT3 = ' '
    TXT4 = ' '
    ENDIF.
    CREATE OBJECT grid1 EXPORTING
    i_parent = container.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING i_structure_name = 'ZEKPO'
    is_variant = v_variant
    i_save = v_save
    i_default = 'X'
    CHANGING it_outtab = T_EKPO.
    ENDIF.
    ENDFORM. "
    FORM SET_DATA *
    FORM set_data.
    SELECT EBELN EBELP MATNR BUKRS STATU
    FROM EKPO INTO TABLE t_EKPO UP TO 20 ROWS.
    ENDFORM. " GET_DATA
    module USER_COMMAND_0786 input.
    CASE OK_CODE.
    WHEN 'EXIT' or 'BACK'.
    CALL METHOD container->free.
    LEAVE TO SCREEN 0.
    ENDCASE.
    CLEAR OK_CODE.
    endmodule. " USER_COMMAND_0786 INPUT
    module STATUS_0786 output.
    SET PF-STATUS 'ZAZUALVGRID'.
    SET TITLEBAR 'GRID_DISPLAY'.
    PERFORM CREATE_CON.
    endmodule. " STATUS_0786 OUTPut
    Regards,
    Azhar

  • When I would like to upgrade my iPad2 at software update of general at settings, loading logo onscreen for hours with no progress. The goal is to upgrade iOS from 5 to 7.0.1. Any good solution for that?

    When I would like to upgrade my iPad2 at software update of general at settings, loading logo onscreen for hours with no progress. The goal is to upgrade iOS from 5 to 7.0.1. Any good solution for that?

    Connect it to the charger unit as instructed by Apple.
    Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support

  • Any good site for learning struts using weblogic

    Hi all,
    Please tell me any good website for learning struts using weblogic. I mean how to creat page and deploy , run it .....
    Thanks in advance

    Hi,
    here is the link for RMI tutorial.
    http://java.sun.com/docs/books/tutorial/rmi/index.html

  • Any good tutorials for using jQuery and ColdFusion to build mobile apps

    Does anyone know of any good tutorials for using jQuery and ColdFusion to build mobile apps?
    Thanks!
    Lee

    I was just this moment looking at this website http://jquerymobile.com/
    Then for you a Google search on Jquerymobile and coldfusion
    http://www.google.co.uk/search?q=jquerymobile+and+coldfusion&ie=utf-8&oe=utf-8&aq=t&rls=or g.mozilla:en-GB:official&client=firefox-a
    http://jquerymobile.com/resources/
    Brings me onto this tutorial
    http://www.raymondcamden.com/index.cfm/2011/8/26/Making-jQuery-Mobile-templates-even-easie r--with-ColdFusion

  • Any good sites for brushes

    Hi all,
    anyone know any good sites for brushes for PSE3, I'm looking for the
    distressed, scratchy stuff
    thanks
    Ed

    Try these:
    http://www.adobe.com/cfusion/exchange/index.cfm?view=sn710
    http://photoshopbrushes.com/brushes.htm
    http://graphicssoft.about.com/od/photoshopbrushes/Free_Adobe_Photoshop_Brushes_to_Download .htm
    http://www.freephotoshop.com/html/free_brushes.html
    Also, a Google search on "photoshop brushes" will return a goldmine!
    Mark

  • Good document for creating cube using AWM wih oracle 10.1.0.2 version

    Can anyone provide some good guide for implementing the OLAP cubes using ORACLE ver 10.1.0.2.0 with AWM Release 1.
    Also, please let me know whether I need to apply any patches.
    The demo provided under this link has some differences when trying to implement.
    http://www.oracle.com/technology/products/bi/olap/viewlet/awm10g_viewlet_swf.html
    Your help is appreciated.

    Well, if some of the required componets were missing, I would imagine you getting an error when trying to connect?
    Where is this ASP application actually running?
    Is it running on your localhost IIS web server?
    If not, any setup on your computer will be irrelevent.
    If it is, you need to install MDAC components, and 2.8 is the latest.
    If running on your local IIS, did you try to create a very basic ASP page which just creates a connection to the database in question? Does that work?
    Do you have ON ERROR statements in your code to bypass any/all SQL errors?
    If you create a simple UDL file on your desktop and specify the server/user/password (ater selecting Oracle OLEDB driver), does the connect button work?

  • Any good recommendations for companies that customize templates?

    Hey,
    Does anyone know any good websites that customize templates?
    I just bought an osCommerce template and I'm looking for a
    company that can do this for me.
    However, if anyone here is really good at designing website,
    I would be willing to work with you.
    We can work out the details.
    Anyways,
    Thanks a lot.

    Send a copy of the template with a list of changes you want
    to:
    waltATwaltswebworxDOTcom
    (use the appropriate characters for AT & DOT)
    Walt
    "textbookb" <[email protected]> wrote in
    message
    news:g41ou0$jqg$[email protected]..
    > Hey,
    >
    > Does anyone know any good websites that customize
    templates?
    >
    > I just bought an osCommerce template and I'm looking for
    a company that
    > can do
    > this for me.
    >
    > However, if anyone here is really good at designing
    website, I would be
    > willing to work with you.
    > We can work out the details.
    >
    > Anyways,
    >
    > Thanks a lot.
    >

  • Nokia Please release any good firmware for n95-3

    Nokia for god sake give me firmware update for my device (95-3) we also paid for the device u just cant ignore us . if u dont want to support to n95-3 then why did u released the another model (95-3) ? U wasted My Money . its working preety lazy , camera is also slow , it processes the cam very slowly , alot of bugs are there ! If i dont get any good firmware update for n95-3 then i will throw my n95-3 from the window & afterwords i will never ever purchase nokia phone ! Thanks Alot Nokia U made My Week .

    Where is my new firmware?? i bought an N95-3 and here in mexico the price of this phone is 750 dollars.. and we have no support?? ATENTION NOKIA u are gonna lose a lot of american people bcuz of this.. (sorry my english)
    Message Edited by markmex on 10-Apr-2008 05:28 AM
    Message Edited by markmex on 10-Apr-2008 05:28 AM

  • Any good websites for scripting buttons and windows?

    i want to start adding windows and buttons to my program, does anyone know any good sites i can look at?
    thanks,
    Sam x

    thanks so much David. i wanted you ask you something about browse windows if you know...
    the code at the bottom of the screen creates three buttons - the third is a browse button, so the user can search for a particular file. Do you know how to have a drop down browse box in pop up window?. Theres so little documentation on this sort of thing. i was hoping you would know something about it....
    i know that this line will create a browse pop up:  var targetFolder = Folder.selectDialog("Import items from folder...");
    but i want to be able to have it as part of the window.
    If you know anything that would be a great help, thanks, Sam
    function myScript(thisObj) {
              function myScript_buildUI(thisObj) {
                        var myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "STREAMLINE OLIVE!", [0, 0, 300, 300]);
                        res="group{orientation:'column', alignment:['fill', 'fill'], alignChildren:['fill', 'top'],\
                               findStr: StaticText { text:'please enter the exact names of the following render Layers:', alignment:['left','center'] }, \
                               findRow: Group { \
          alignment:['fill','top'], \
          findStr: StaticText { text:'Olive colour:', alignment:['left','center'] }, \
          findEditText: EditText { text:'', characters:20, alignment:['fill','center'] }, \
                              findRow: Group { \
          alignment:['fill','top'], \
          findStr: StaticText { text:'Olive occlusion:', alignment:['left','center'] }, \
          findEditText: EditText { text:'', characters:20, alignment:['fill','center'] }, \
                                findRow: Group { \
          alignment:['fill','top'], \
          findStr: StaticText { text:'Browse for movie:', alignment:['left','center'] }, \
          findEditText: EditText { text:'', characters:20, alignment:['fill','center'] }, \
                        myPanel.grp = myPanel.add(res);
                        myPanel.layout.layout(true);
                        myPanel.grp.minimumSize = myPanel.grp.size;
                        myPanel.layout.resize();
                        myPanel.onResizing = myPanel.onResize = function () {this.layout.resize();}
                        return myPanel;
              var myScriptPal = myScript_buildUI(thisObj);
               if ((myScriptPal != null) && (myScriptPal instanceof Window)) {
                        myScriptPal.center();
                        myScriptPal.show();
              myScript(this);

  • Can anyone recommend a good document for Cisco IDS and AAA

    I need some basic tutorial for Cisco IDS and AAA. can anyone recommend any document for it?
    thanks

    The Cisco IDS/IPS senors do not perform any AAA functions. You can not validate a user/password externally.

  • Can Anyone Recommend Any Good Tutorials For A Beginner?

    Hi,
    I just purchased Pro Logic 9 and was wondering if anyone knows of any good lessons/tutorials to help a first time user of the Pro Logic series. Im excited to get into this program and record but it is so powerful that it is a bit overwhelming. Any suggestions? Thanks in advance!

    I agree with JG99.
    +1 macprovideo
    I've seen both the lynda and macprovideo logic training. Don't get me wrong the Logic training at lynda is ok for the basics. The macprovideo ones are excellent and go much further. So I could learn in depth how all the instruments, like the EXS24 sampler, Ultrabeat drum machine, synths and plugins work and how to use them. There are proper whole tutorials dedicated to mixing and mastering. For me and my studio buddies macprovideo for final cut, logic and now the photoshop titles has saved us countless hours and a lot of hair!
    http://www.macprovideo.com/tutorials/logic-application
    The macprovideo iPad and iPhone apps rock too!

  • Any Good link for mysql Installation in solaris 10?

    Please share with me good link for mysql, Tomcat installation(latest version)
    I found http://instmysql5sol10.blogspot.com/ in internet but not able to download "Download the packages (both Standard and Max) and save them in an appropriate directory".

    alan.pae wrote:
    attempted to install Solaris on it. Everything goes OK but I am confused by an info message that I get upon booting the system from CD:
    SunOS Release 5.10 Version Generic_137138-09 *32-bit* You got it installed and then you booted from the CD???
    If you booted from the hard disk then run:
    isainfo -kv
    alanNo, of course not. It isn't installed yet. I meant that I booted the
    computer from from the install DVD to start the installation process.
    But thanks for the info. I'll install it and will run this command.

Maybe you are looking for

  • How do I forward eMail from my Mac to iCloud and my iPad

    Been using a Mac for many years, but earlier today I activated my first iOS device, an iPad. Am running OS X 10.8.2 and I have an iCloud account. I have multiple eMail accounts on my Mac. How do I get my Mac to automatically forward eMail to iCloud s

  • "Ease In" Effects

    In "Effects>Entrance>Ease In", both the "EaseInBottom" and "EaseInTop" have the same exact effect (they both come down from the top). I am assuming this is a Captivate 7 glitch, but is there a way to fix it? I want to have the image ease in up from t

  • First time Journal saving Error NW7.5 Sp4

    Hi,      I am using the BPC NW sp4 version and have created a journal template. When I try to save the journal entry, I get the following error "new journal ID: Failed to get next member of range member (UJJ_JRNID - ). " I saw a similar posting earli

  • Export Catalog from PC Photoshop Elements 10 and Import Catalog to Mac Lightroom CC - How please?

    Hello I am running Photoshop Elements 10 on a Windows 7 PC and I want to move it to my Mac Lightroom CC / Photoshop CC. I understand I need to export the catalog from PSE 10 and then import it to Lightroom or Photoshop CC. I wonder if I could get som

  • Unable to save over existing photoshop cs6 file using smb file share

    The issue has been noted in 10.7 and 10.8. As a test, SMB did the same thing running from OSX Server but worked fine using AFP on OSX Server. The shared directory being used is on Windows Server 2008 R2.