Backup the entire sybase database

I am doing a project in avaya. I installed ipocc(a avaya product) in windows.
Ipocc it self have sybase database. I try to take a backup it show me threshold error.
The error is i mentioned below
Backup Server: 4.172.1.1: The value of 'reserved pages threshold' has been set to 85%.
Backup Server: 4.172.1.2: The value of 'allocated pages threshold' has been set to 40%.
Backup Server session id is: 25. Use this value when executing the 'sp_volchanged' system stored procedure after fulfilling any volume change request from the Backup Server.
Backup Server: 4.135.2.1: Invalid Device: you cannot dump to or load from a directory, 'C:\Users\Administrator\Desktop\Backup'.
Error encountered by Backup Server.  Please refer to Backup Server messages for details.

that's not a command, that's a path
see if you can open a query window, and run the command manually
e.g. the command that Bret already posted
dump database mydatabase to 'C:\Users\Administrator\Desktop\Backup\mydatabase.19Jan2015.dmp'
replace mydatabase by the actual database name.
Or run a test for the master database, which should create a small backup file
dump database master to 'C:\Users\Administrator\Desktop\Backup\master.19Jan2015.dmp'
just a side comment, your desktop might not be the best place to store backup files...

Similar Messages

  • Mac OS X Server 10.4  backup the entire startup disk?

    Hi, my question is: how do i backup the entire startup disk (and all the other disks connected) without turn off the services on the machine? it is possible via ethernet creating an image disk?
    please help me
    Andrea

    The only meaningful and trustworthy full backup is one you make while booted from another drive.
    This ensures that no services are running.
    If your server is an OD master, use the supplied tools to do a backup (see afp548.com )
    You can autmate backing up other settings via "serveradmin" (again, see afp548.com to learn more, also read: man serveradmin
    in the Terminal. Also see
    http://images.apple.com/server/macosx/docs/CommandLine_Adminv10.5.pdf
    if you're running any other DBs, you must use the supplied tools - for example, start reading at http://dev.mysql.com/doc/ for MySQL
    If you're running FileMaker, you must shut it down before backing up the files. Or use FM Server which can automate backups.
    etc.
    Point being: there are many things you simply cannot (and should not try to) backup while they are in use.

  • HT201250 Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?

    Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?
    I want to be assured that my back up is working completely.    What if my MacBookPro auto-logs off my account during the backup due to no activity?   Or, is the backup considered activity and it won't log off?
    What about  the Energy saving options - will they affect the backup ?

    FOTO123456 wrote:
    Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?
    Assuming you mean via Time Machine, yup.    It backs up your entire system, including all user accounts (unless you specifically exclude things).
    What if my MacBookPro auto-logs off my account during the backup due to no activity?   Or, is the backup considered activity and it won't log off?
    I've never tried it, but the backups run as the "root" user, so will probably continue.  If they don't, it's not a problem, as the next backup will "catch up" with all changes.
    What about  the Energy saving options - will they affect the backup ?
    Not really.  If you have the Mac set to shut down at a particular time, that will of course interrupt a backup if one is running.  But again, the next backup will catch up.

  • ABAP Code for Backup the entire table data in the application server

    Hello Friends,
    I have to create the table data Backup and Store the entire table data in the application server and also be able to restore the data back if needed.
    this should be dynamic program for any table based on the table name given on the application server.. I have developed a program for this but its having problems with the Quantity, amount. Its not writing it correctly at the application level.
    ANy Suggestions on this.
    Below is the program for this.
    Thanks,
    Ster.
    * Report  YWMM_TABLE_DUMP                                             *
    REPORT ywmm_table_dump .
    TABLES :
            dd03l.
    * Type spool declaration
    TYPE-POOLS:
            abap, slis.
    DATA: i_table_data1  TYPE REF TO data.
    DATA : it_dd03l LIKE dd03l OCCURS 0 WITH HEADER LINE.
    *DATA : gt_fieldcat TYPE lvc_s_fcat.
    DATA : i_fcat      TYPE STANDARD TABLE OF lvc_s_fcat,
           l_dr_line         TYPE   REF TO data,
           l_v_as4vers       TYPE as4vers.
    FIELD-SYMBOLS: <f_table_data1>     TYPE STANDARD TABLE,
                   <f_wa_table_data1>  TYPE ANY.
    SELECTION-SCREEN: BEGIN OF BLOCK bl1 WITH FRAME TITLE text-001.
    PARAMETERS: rb_copy RADIOBUTTON GROUP map DEFAULT 'X',
                rb_rest RADIOBUTTON GROUP map.
    SELECTION-SCREEN: END   OF BLOCK bl1.
    SELECTION-SCREEN: BEGIN OF BLOCK bl2 WITH FRAME TITLE text-002.
    PARAMETERS: p_table  TYPE tabname OBLIGATORY,
                p_plfld TYPE dd03l-fieldname.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_bkfile TYPE localfile OBLIGATORY.
    SELECTION-SCREEN: END   OF BLOCK bl2.
    PERFORM get_data.
    IF rb_copy = 'X'.
      PERFORM backup.
    ELSEIF rb_rest = 'X'.
      PERFORM database_update.
    ENDIF.
    *&      Form  get_data
    FORM get_data.
      CLEAR   i_fcat.
      REFRESH i_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
           EXPORTING
                i_structure_name = p_table  " Table Name
           CHANGING
                ct_fieldcat      = i_fcat
           EXCEPTIONS
                OTHERS           = 1.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog = i_fcat
      IMPORTING
        ep_table        = i_table_data1.
      IF sy-subrc = 0.
        ASSIGN i_table_data1->* TO <f_table_data1>.
      ELSE.
        WRITE: 'Error creating internal table'.
      ENDIF.
      IF rb_copy = 'X'.
        SELECT  * FROM (p_table) INTO CORRESPONDING FIELDS OF
                  TABLE <f_table_data1> UP TO 20 ROWS.
      ELSEIF rb_rest = 'X'.
        CREATE DATA l_dr_line LIKE LINE OF <f_table_data1>.
        ASSIGN l_dr_line->* TO <f_wa_table_data1>.
    *Get Data from Application Server
    * Opening the dataset P_BKFILE given in the selection screen
        TRANSLATE p_bkfile TO LOWER CASE.
        OPEN DATASET p_bkfile FOR INPUT IN TEXT MODE." ENCODING DEFAULT.
        IF sy-subrc NE 0.
    *    MESSAGE:
        ELSE.
          DO.
    * Reading the file from application server
            READ DATASET p_bkfile INTO <f_wa_table_data1>.
            IF sy-subrc = 0.
              APPEND <f_wa_table_data1> TO <f_table_data1>.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
    * Closing the dataset
          CLOSE DATASET p_bkfile.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_data
    *&      Form  backup
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM backup.
      TRANSLATE p_bkfile TO LOWER CASE.
      OPEN DATASET p_bkfile FOR OUTPUT IN TEXT MODE.
      IF sy-subrc NE 0.
        WRITE: text-017.
        STOP.
      ELSE.
        LOOP AT <f_table_data1> ASSIGNING <f_wa_table_data1>.
          TRANSFER <f_wa_table_data1> TO p_bkfile.
        ENDLOOP.
      ENDIF.
      CLOSE DATASET p_bkfile.
    ENDFORM.                    " backup
    *&      Form  database_update
    FORM database_update.
      DATA : i_mara_u TYPE STANDARD TABLE OF mara WITH HEADER LINE,
             i_ekpo_u TYPE STANDARD TABLE OF ekpo WITH HEADER LINE,
             i_eban_u TYPE STANDARD TABLE OF eban WITH HEADER LINE,
             i_resb_u TYPE STANDARD TABLE OF resb WITH HEADER LINE,
             i_plpo_u TYPE STANDARD TABLE OF plpo WITH HEADER LINE,
             i_stpo_u TYPE STANDARD TABLE OF stpo WITH HEADER LINE,
             i_vbap_u TYPE STANDARD TABLE OF vbap WITH HEADER LINE,
             i_vbrp_u TYPE STANDARD TABLE OF vbrp WITH HEADER LINE,
             i_lips_u TYPE STANDARD TABLE OF lips WITH HEADER LINE,
             i_afvc_u TYPE STANDARD TABLE OF afvc WITH HEADER LINE,
             i_asmd_u TYPE STANDARD TABLE OF asmd WITH HEADER LINE,
    *           i_cooi_u TYPE STANDARD TABLE OF cooi WITH HEADER LINE,
             i_qmel_u TYPE STANDARD TABLE OF qmel WITH HEADER LINE,
             i_cooi_u TYPE STANDARD TABLE OF cooi WITH HEADER LINE,
             i_esll_u TYPE STANDARD TABLE OF esll WITH HEADER LINE,
             i_t165_u  TYPE STANDARD TABLE OF t165 WITH HEADER LINE,
             i_t165e_u TYPE STANDARD TABLE OF t165e WITH HEADER LINE,
             i_twpko_u TYPE STANDARD TABLE OF twpko WITH HEADER LINE,
             i_tpext_u TYPE STANDARD TABLE OF tpext WITH HEADER LINE,
             i_ce4mxpa_u TYPE STANDARD TABLE OF ce4mxpa WITH HEADER LINE,
             i_ce4mxpa_acct_u TYPE STANDARD TABLE OF ce4mxpa_acct WITH
                                                             HEADER LINE,
             i_zaim_u  TYPE STANDARD TABLE OF zaim WITH HEADER LINE,
             i_s012_d TYPE STANDARD TABLE OF s012 WITH HEADER LINE,
             i_s012_i TYPE STANDARD TABLE OF s012 WITH HEADER LINE,
             i_dummy  TYPE STANDARD TABLE OF mara.
      CASE p_table.
        WHEN 'MARA'.
    *     Non-Key
          PERFORM move_to_table USING   <f_table_data1>
                                CHANGING i_mara_u[]
                                         i_mara_u.
          PERFORM update_table USING i_mara_u[].
      ENDCASE.
    ENDFORM.                    " database_update
    *&      Form  move_to_mara
    FORM move_to_table USING    p_tab_from TYPE STANDARD TABLE
                       CHANGING p_tab_to   TYPE STANDARD TABLE
                                p_w_table.
      DATA:  l_wa_fcat TYPE lvc_s_fcat.
      FIELD-SYMBOLS: <f_field_from> TYPE ANY,
                     <f_field_to>   TYPE ANY.
      LOOP AT p_tab_from ASSIGNING <f_wa_table_data1>.
        LOOP AT i_fcat INTO l_wa_fcat.
          ASSIGN COMPONENT l_wa_fcat-fieldname
         OF STRUCTURE <f_wa_table_data1> TO <f_field_from>.
          ASSIGN COMPONENT l_wa_fcat-fieldname
         OF STRUCTURE p_w_table TO <f_field_to>.
          <f_field_to> = <f_field_from>.
        ENDLOOP.
        APPEND p_w_table TO p_tab_to.
      ENDLOOP.
    ENDFORM.                    " move_to_mara
    *&      Form  update_table
    FORM update_table  USING p_table_update TYPE STANDARD TABLE.
      SELECT SINGLE *
        FROM dd03l
       WHERE fieldname = p_plfld
         AND tabname   = p_table
         AND keyflag   <> 'X'
         AND as4local = 'A'
         AND   as4vers = l_v_as4vers
         AND   ( comptype = 'E' OR comptype = space ).
      IF sy-subrc = 0.
    *   Do update
        IF NOT p_table_update IS INITIAL.
          UPDATE (p_table) FROM TABLE p_table_update.
          IF sy-subrc = 0.
            COMMIT WORK.
          ELSE.
            ROLLBACK WORK.
            WRITE: text-003.
            STOP.
          ENDIF.
        ENDIF.
      ELSE.
    *delete and insert.
        IF NOT p_table_update IS INITIAL.
    *      DELETE (p_table).
          IF sy-subrc = 0.
            INSERT (p_table) FROM TABLE p_table_update.
            IF sy-subrc = 0.
              COMMIT WORK.
            ELSE.
              ROLLBACK WORK.
              WRITE: text-018.
              STOP.
            ENDIF.
          ELSE.
            ROLLBACK WORK.
            WRITE: text-018.
            STOP.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    " update_table
    Edited by: Julius Bussche on Jul 18, 2008 1:43 PM
    Please use a meaningfull subject title!

    ARS,
    I am struggling a bit to get this.
    there is a syntax error,
    Field "FIELDS_INT-TYPE" is unknown. It is neither in one of thespecified tables nor defined by a "DATA" statement.     
    Again you have asked to move to a diffrent table. What is that table and how to build it.
        LOOP AT <f_table_data1> ASSIGNING <f_wa_table_data1>.
          LOOP AT i_fcat INTO l_fcat.
            IF l_fcat-inttype EQ 'P'.
              ASSIGN COMPONENT l_fcat-fieldname
                  OF STRUCTURE <f_wa_table_data1> TO <f_field>
                  TYPE     fields_int-type
                  DECIMALS fields_int-decimals.
            ELSE.
              ASSIGN COMPONENT l_fcat-fieldname
                  OF STRUCTURE <f_wa_table_data1> TO <f_field>
                  TYPE     fields_int-type.
            ENDIF.
            " Move <f_field> to a new table and use this table for download
          ENDLOOP.
          TRANSFER <f_wa_table_data1> TO p_bkfile.
        ENDLOOP.
    Ster

  • Backup the entire time capsule...

    I am a little OCD with my hard drives. I personally use a Raid-1 server attached to the airport extreme for time machine backups and NAS. I have another portable drive that I back everything up to and keep it in a safe in the event my place burns down or something happens to my server. My parents are not as OCD yet want to get a time capsule for a home network to back up 3 computers along with movies/pics/ and important documents. They also want to be able to back up the TC for the same reasons I do. Is there a way to do this with TC? My idea is a 1TB external drive that they will hook up once a week or once a month and use to "carbon copy" TC and keep the drive in a safe the rest of the time. Any ideas on if/how to make this work?

    The TC has a built-in feature for this.
    You can archive the internal TC drive to an external USB drive just by pressing a button in the Airport tool program. It then copies all the data on the internal drive to the external USB drive of you choice.

  • Uninstalling the entire oracle database related components in oel5

    Hi,
    i need to uninstall oracle database 10g and related to its all components please provide me the steps and also the needed comments to uninstall it from the oel5

    1. shutdown immediate -- stop the database.
    2. Run the oracle universal installer and remove the oracle software.
    If step 2 is not possible then
    Remove all the datafiles,controlfiles and redologfiles for the database.
    Remove all the directories under ORACLE_HOME.
    3. Remove /etc/oratab
    Regards
    Asif Kabir
    45 (43 unresolved)
    -- If helps, mark your answer as correct/helpful.

  • How can i backup the entire system ?

    Hi everybody,
    I'm running osx lion and plain to install windows 7 x64 running via bootcamp.
    Everybody knows, it takes a hughe times to tweaks boh systems and install all applications that we need.
    I would like to know if there's a tool that could allow me to do a full backup with osx lion partition and bootcamp partition with windows 7 into a single one image ?
    Many thanks in advance.

    There's no single app that will do both.
    Time Machine (you might want to review the Time Machine Tutorial, and perhaps browse Time Machine - Frequently Asked Questions) or one of the "cloning" apps will do your OSX volume fine. 
    I don't do Windoze, but understand the WinClone app (about $20, I think) has been upgraded and should handle the Bootcamp partition.

  • Forced to backup the entire volume?

    I'm using DPM 2012 R2 and am trying to backup a specific folder. What I'm running into is that DPM wants to allocate enough disk space for all the folders on the volume, not just the folder i'm selecting.  Here's my scenario:
    Folder 1 (I want o backup):  500GB
    Folder 2 (Don't want to backup):  2TBs
    I'm telling my protection group to only backup Folder 1, but it's telling me that the size of the data being protected is 2.5TBs and wants to make the DPM protection volume 3.5TBs.
    I swear I've successfully implemented this type of scenario before, but not sure what i'm missing here.  Thanks.

    Hi,
    While on the disk allocation screen, you need to click on the calculate link so DPM will query the size of the selected items.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Aperture 3 - does Time Machine backup the entire library when you modify it

    Since installing Aperture 3 and importing my iPhoto library, I've noticed that my daily Time Machine backups are now ~40GB. My Aperture library is 60GB, so I guess it can't be doing a full backup of it every day but I'm suspicious that it's Aperture related. Anyone know how I can see what's going on?

    The only way to test a back up is to do a restore.
    FWIW Time Machine does incremental back ups - i.e it backs up the changes - rather than doing a whole back up each time.
    There's a Time Machine forum here
    http://discussions.apple.com/forum.jspa?forumID=1342
    with some very knowledgeable people posting on it.
    Regards
    TD

  • Old HDD in new MBP. Will TC attempt to backup the entire drive?

    I just got a new MBP and I want to swap drives from the old MB to the new. Will TC treat the new computer with the old drive as a totally new system and attempt a full backup or will it just continue to do incremental backups as before?
    Thx for any info and advice

    magna42 wrote:
    I just got a new MBP and I want to swap drives from the old MB to the new. Will TC treat the new computer with the old drive as a totally new system and attempt a full backup
    Yup.
    You should get the prompt in #B5 of [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum). But no matter how you answer it, Time Machine will do a full backup of the new Mac.

  • OSB 10.1.0.0 on AIX crashes the entire system during an rman backup to tape

    Hi,
    I have here two AIX 5.3-07 systems with Oracle 10.2.0.2 and 10.2.0.3 on it. After installing Oracle Secure Backup for AIX I tried an online backup with rman. During the rman backup the entire AIX system crashes and reboots.
    I can reproduce this on both AIX machines. If I'm using only obtar to backup some files it works out of the box. On the 10.2.0.2 system I've initial installed a 10.2.0.1 database. With this installation I was able to make online backups without any crashes.
    Just before I open a tar I want to ask if someone has any hints?
    MfG
    J. Krause

    File an SR to further investigate this.

  • Backup - how to restore the entire configuration (system cloning)

    Hi, is it possible to backup the entire system configuration on order to restore file and system configuration? Time machine is a file backup, if I reset yosemite I've to configure the entire operative system...

    OGELTHORPE Is right but you are misunderstanding Time Machine…
    In the event of a restore you reinstall OS X & then migrate the Time Machine backup into the new OS. The OS is returned to the same state.
    A bootable clone is quicker to get you up & running though. Do both

  • What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi All,
    What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi Jayachander,
    Have a look at these sap notes:
    For taking backup: Schedule from DB13 and get the exact command from Logs
    1841993 - SYB: How to schedule backups in DBA Cockpit
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    How to restore DB
    1611715 - SYB: How to restore a Sybase ASE database server (Windows)
    Divyanshu

  • The automated backup of the sybase database in zfd4.X does not work afther installing zfd4 IR 5

    Hello everyone,
    Before installing zfd4 IR 5 it was possible to backup the sybase database
    with the startser dbbackup command from the server console with cron.
    See document in cool solutions "Automating the backup of the sybase database
    in zfd4.x" by Shaun Pond.
    After installing zfd4 IR5 it doesn't work anymore.
    I have added in the properties files the section [DBBackup Service] in the
    properties file.
    This section is shown up in a listser * on the console.
    I get the following error in the logger screen when doing a startser
    dbbackup:
    Start service utility: uable to start the service
    'Zenworksinvservice/dbbackup service'
    java.lang.nosuchmethoderror:
    com.novell.zenworks;desktop.inventory.dbutilities. dblookup: method
    getconnection()Ljava/sql/connection; not found
    at
    com.novell.utility.servicemanager.servicemanagercl ient.throwexception
    (servicemanagerclient.jav:343)
    at com.novell.utility.servicemanager.servicemanagercl ient.handleresponse
    status (servicemanagerclient.jav:316)
    at
    com.novell.utility.servicemanager.servicemanagercl ient.processresponse
    (servicemanagerclient.jav:210)
    at com.novell.utility.servicemanager.servicemanagercl ient.throwexception
    (servicemanagerclient.jav:75)
    Zenworksinventory startservice exited with status -1
    Any idea ?
    Kind regards,
    Bearelle Jacques

    Jacques,
    It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • My MacBook was wiped of all my music and everything else, and now my iTouch is the only device with my entire music database. My iTouch is old. (Version 6.1.6, Model number: MC547LL/A) Is there any way I can put all the music on my iTouch onto my Mac

    My MacBook was wiped of all my music and everything else, and now my iTouch is the only device with my entire music database. My iTouch is old. (Version 6.1.6, Model number: MC547LL/A) Is there any way I can put all the music on my iTouch back onto my MacBook? I hate that I could lose my entire music library by dropping my iTouch in the toilet.
    I've tried to plug in my iTouch into my MacBook, but I can't seem to give the music-transfusion without subscribing to iTunes Match or just completely wiping my iTouch.
    PLEASE HELP MEEEEE

    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself independently backed up against loss.  To use a device with a different setup you transfer the old library from a computer or a backup directly to the new setup, not the device to the library. Media syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

Maybe you are looking for

  • Having problems combining PDF files with electronic signatures...

    I have Adobe Pro XI and I've been trying to combine numerous PDF files. They are each 2 pages and contain electronic signatures. When I attempt to combine them it appears to be working and then suddenly Adobe just closes with no error message or anyt

  • Hp split X2, new laptop, forgot password

    Hi,  I recently purchased an hp split x2, however, someone placed a username and password on it, now i cannot use the pc as i do not know the password. How do I get around this? Kind Regards Gregg

  • Import dump with greek characters

    Hi Client had provided us dump file with expdp command. We have imported it with impdp command. However, data contains greek characters. Database charset is same in both source and target database (UTF8). Currently it seems such greek characters are

  • Create  a custom search in BP identification

    Hi Experts, I need to replace the Object and Ibase search in the right hand side of the Account Identification, i have created a custom search and Result View in a Z* Application, Now i want to replace the Object and Ibase search with the Z* Applicat

  • TS5471 WHY would this be "expected behavior"?

    It wasn't the behavior previously.  So this basically says that if you're going to import photos into iPhoto on a computer (instead of using iCloud Photo stream - which doesn't work for so many reasons) then you shouldn't bother editing photos on the