UC560 - Nightly automated backup - Possible?

Hi,
I have an UC560 system. I would like to schedule a nightly backup job to backup all configuration and voice mails. Is it possible? Configuration doesn't change much on daily basis but the voicemails do and need a way to back them up unattended.
Please point me to right direction if you have figured out a good work around or solution.
Thanks,        

Hello,
This is not possible through CCA, but you can use CLI and the CUE web gui to do this. There are also 3rd party tools you can use to do the automated backups.
See this post for the more info about backups: https://supportforums.cisco.com/thread/2155698
Here is an example how you would do this in CME:
kron occurrence monthly at 01:23 june 20 recurring
  policy-list save-config
kron policy-list save-config
  cli copy system:/running-config tftp://192.168.1.2/router-confg.txt
In the CUE web GUI under Administration you need to define the backup server. Then you can create a scheduled backup.
You will need FTP and TFTP servers running somewhere to backup the configurations and data to.
Hope this helps.
Thanks,
-john

Similar Messages

  • How to disable Automated  Backups by EM 11gR2 ?

    Hello
    How to disable automated backups in Oracle 11gR2 by Enterprise Manager?
    I can't find any documentation to do this in 11gR2 and can't find this in EM. Is it possible by EM?
    Thanks in Advance
    Edited by: kozand on 2011-09-20 02:37

    There I can define a new "automated backup" I can't see where I can DISABLE defined "automated backup".

  • Automated Backup Does Not Seem to be Working

    I tried to set up an automated backup on an Azure Web App. It's on the Standard Plan. It allowed me to configure it and after I did so I got a notification saying it was set up. And I see now that it has a status of "Created". But it does not seem
    to have moved any further -- and it has been about 15 minutes.
    I did successfully get a manual backup of the site to work last night with the same configuration.
    Any ideas as to what I may be doing wrong?
    Thank you.

    Hi,
    I would request you to check under backup options, scheduled backup is on.
    And also please make sure that the Backup and Restore feature requires an Azure storage account and container that must belong to the same subscription as the web app that you are going to back up.
    Do check this and let us know so that we can investigate further.
    Regards,
    Azam khan

  • V12 (GA) switch issues. DB is stuck in creation state, automated backup issues, no monitoring data 1h

    Hi,
    On Friday we have switched databases to V12 version as it was announced that they are now generally available, but I have doubts that everything was tested by Microsoft, as immediately we have several issues:
    1. We had automated backups scheduled on all DB. On Sunday everything started to not work properly. There were more than 10 backup databases created like AutomatedSqlExport_X_20150201T050000Z and emails send that backup cannot be created. We had to
    remove them manually except one.
    2. One of the backup database is still in creating state from yesterday so we cannot remove it.
    3. We have turned off all automated backups in Azure Portal, but I'm not sure if they can be turned on again. I do not want to have 20 DB billed every week as autometed scripts are not working properly.
    4. After switch in Management Portal only last hour metrics are available. Switching to 24h or more returns all zeroes. When do we count on the fix?
    PS. tracking ID of db that is in creating state: 44530DC6-B174-4FAA-A4D6-2C01CA20CB85
    Regards,
    Rafal

    Hi Gluwer,
    Thanks for posting here.
    I suggest you to open a support case as this needs more back-end information which cannot be discussed over the forum.
    Refer: http://azure.microsoft.com/en-us/support/options/
    Girish Prajwal

  • Is incremental backup possible for archivelog.

    Hi expert
    i want to plan weekly and daily backup with windows redundancy 14 days.
    full archivelog backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 0
    DEVICE TYPE DISK
    TAG = 'WEEKLY_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/weekly_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-7';
    daily backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 1
    DEVICE TYPE DISK
    TAG = 'DAILY_INCREMENTAL_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/daily_incremental_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-1';
    my question that if i will take backup then, will be any gap in sequnce
    and second question is that ---is there incremental backup possible for archivelog.
    os =aix6 and database 10g2

    afzal wrote:
    Dear Sir,
    ok question number 2 is clear that incremental backup is not possible but still confuse
    about sequence
    if i did take backup of 17 feb at 12 o'clock seq 1,2,3,4
    after that i did take backup 18th fab 1 pm then it will take from 6,7,8-------seq 5 is missing
    please please correct my archive log script for weekly and daily backup with windows redundancy 14 days
    again please correct my script
    thnaksWHy you think the archive log file number 5 will be missing? RMAN automatically archives current redo log files and backups it
    Why you don't test your backup script by your own and check results? Never trust anyone on your critical databases' backups, do it by your own!
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Consistent hot backup possible

    Is a consistent hot backup possible?
    I would like to perform hot backups while the database is in basically a read only state. I am currently using Oracle recommended backups via OEM, for example.
    run {
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA$OEM_LEVEL_0';
    backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA$OEM_LEVEL_0' database;
    release channel oem_disk_backup;
    allocate channel oem_sbt_backup1 type 'SBT_TAPE' format '%U';
    backup recovery area;
    Would executing the sql command "alter database begin backup;" before running the above RMAN script accomplish this task? Then off course when completed execute sql "alter database end backup;".
    My basic concern is this type of RMAN hot backup usable in a disaster situation, i.e recreated on another server from tape backup.
    I am open to any other ideas.
    Thanks for your help in advance.
    Ed - Wasilla, Alaska
    Edited by: evankrevelen on Sep 11, 2008 10:18 PM

    Thanks everyone who replied to this thread.
    Just to clarify my complete backup strategy, there are two RMAN scripts run on daily and weekly basis. The daily does pickup the archivelogs. I had shown the weekly when first opening this thread. Here is the daily.
    run {
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA$OEM_LEVEL_0';
    backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA$OEM_LEVEL_0' database;
    release channel oem_disk_backup;
    allocate channel oem_sbt_backup1 type 'SBT_TAPE' format '%U';
    backup archivelog all not backed up;
    backup backupset all not backed up since time 'SYSDATE-1';
    My question now is what RMAN does in the increments. It appears to be updating the original level 0 copies of datafiles with changed blocks only. Is the new copy of the datafile now a level 0 type file?
    Here is a transcript from one of the daily backups.
    Starting recover at 11-SEP-08
    channel oem_disk_backup: starting incremental datafile backupset restore
    channel oem_disk_backup: specifying datafile copies to recover
    recovering datafile copy fno=00001 name=+DEVRVYG1/landesk/datafile/system.2576.616107783
    recovering datafile copy fno=00002 name=+DEVRVYG1/landesk/datafile/undotbs1.2574.616107865
    recovering datafile copy fno=00003 name=+DEVRVYG1/landesk/datafile/sysaux.2575.616107829
    recovering datafile copy fno=00004 name=+DEVRVYG1/landesk/datafile/users.2572.616107871
    recovering datafile copy fno=00005 name=+DEVRVYG1/landesk/datafile/landesk.2914.616107643
    channel oem_disk_backup: reading from backup piece +DEVRVYG1/landesk/backupset/2008_09_10/nnndn1_tag20080910t220150_0.12330.665100189
    channel oem_disk_backup: restored backup piece 1
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_10/nnndn1_tag20080910t220150_0.12330.665100189 tag=TAG20080910T220150
    channel oem_disk_backup: restore complete, elapsed time: 00:05:16
    Finished recover at 11-SEP-08
    Starting backup at 11-SEP-08
    channel oem_disk_backup: starting incremental level 1 datafile backupset
    channel oem_disk_backup: specifying datafile(s) in backupset
    input datafile fno=00005 name=+DEVG1/landesk/datafile/landesk.374.614072207
    input datafile fno=00003 name=+DEVG1/landesk/datafile/sysaux.384.614002027
    input datafile fno=00001 name=+DEVG1/landesk/datafile/system.383.614002025
    input datafile fno=00002 name=+DEVG1/landesk/datafile/undotbs1.385.614002027
    input datafile fno=00004 name=+DEVG1/landesk/datafile/users.386.614002027
    channel oem_disk_backup: starting piece 1 at 11-SEP-08
    channel oem_disk_backup: finished piece 1 at 11-SEP-08
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_11/nnndn1_tag20080911t220708_0.12999.665186835 tag=TAG20080911T220708 comment=NONE
    channel oem_disk_backup: backup set complete, elapsed time: 00:02:26
    channel oem_disk_backup: starting incremental level 1 datafile backupset
    channel oem_disk_backup: specifying datafile(s) in backupset
    including current control file in backupset
    including current SPFILE in backupset
    channel oem_disk_backup: starting piece 1 at 11-SEP-08
    channel oem_disk_backup: finished piece 1 at 11-SEP-08
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_11/ncsnn1_tag20080911t220708_0.2301.665186983 tag=TAG20080911T220708 comment=NONE
    channel oem_disk_backup: backup set complete, elapsed time: 00:00:21
    Finished backup at 11-SEP-08
    It appears to be updating the previous copy with updated blocks thus rolling forward the datafile copy to a new level 0 copy.
    Then to restore from the backup RMAN would first use this new copy of the datafile and then apply any archivelogs to them to bring the database to the point in time the incremental backup was taken.
    Are these assumptions true?
    Thanks for your help,
    ED

  • Automated Backups failing since V12 Update

    Hi,
    I recently upgraded my database server to the V12 (GA in my region). I have 3 servers running and configured for an automated backup at 12:00 AM every day.
    This morning I discovered we had 20 additional SQL Servers running, each one with an hourly time stamp from the last which I can only imagine is a re-try of the original export. When trying to delete these databases the portal said "An error occurred
    whilst existing this request, please re-send". I did try to re-send several times for each database and they all failed. Approximately 20 minutes later all the databases started to just disappear on their own (After I had turned off the automated backup
    in the settings).
    I checked over the upgrading documentation and couldn't find any details of problems with the Automated backups post upgrade so I am unsure if this is a bug in the system or a problem on the particular databases?
    I have manually run the backups as indicated in the error email and that worked fine.
    Thanks

    Hello CAWeb,
    My name is Eli Fisher and I am a Program Manager on the SQL DB team. We are aware of the issue you have stated above and there is work being done to fix the issues.
    I would be glad to look into your specific issue for more details. If you would like, you could send your database name and server name to my email address and I could look further into what is happening. My email alias is elfish at Microsoft dot com.  
    Additionally, if you are using automated export for backup purposed, we have built in backups for all Basic, Standard, Premium databases. You can use these backups to restore up to any point in time within your database's backup retention period. Additionally
    a daily backup is made geo-redundant so if there is a regional disaster you would be able to restore your database. If you would like to learn more about these capabilities look here:
    Point in Time Restore Blog http://azure.microsoft.com/blog/2014/10/01/azure-sql-database-point-in-time-restore/
    Geo-Restore Blog http://azure.microsoft.com/blog/2014/09/13/azure-sql-database-geo-restore/
    How-To use the Restore capabilities:
    Geo-Restore: http://azure.microsoft.com/en-us/documentation/articles/sql-database-geo-restore-tutorial-management-portal/
    Point in Time Restore: http://azure.microsoft.com/en-us/documentation/articles/sql-database-point-in-time-restore-tutorial-management-portal/
    Restore a deleted database: http://azure.microsoft.com/en-us/documentation/articles/sql-database-restore-deleted-database-tutorial-management-portal/
    Hope this helps!

  • Time Machine fails during automated backups

    I use a 1.5Tb external drive connected by USB as my backup drive for Time Machine. I reformatted it, and the first backup Time Machine did was successful. However, it can never do the regular automated backups, it keeps saying "Unable to complete backup. An error occurred while creating the backup folder." I tried going into Disk Utility and "repairing disk" and it doesn't help. The only way it works again is if I eject the drive (which it has to be forced to do every time), turn off the drive, and turn on again. It can then usually do an initial backup, and then again it fails the automated backups. I'm beginning to think it is the drive's issue. It is an internal drive that's housed in a external enclosure.

    thatweskid wrote:
    I have a Mac Pro running Mac OS 10.6.4 that freezes during incremental time machine backups. The initial backup will run fine, but during a subsequent backup the machine will always lock up and need to be restarted.
    I've tried repairing the permissions looking for trouble in log files, but haven't had any luck.
    Try verifying your internal HD, per #A5 in Time Machine - Troubleshooting (or use the link in *User Tips* at the top of this forum). If that fails, you'll have to use your Install disc to repair it, per the yellow box there.

  • Automated Backups using Intervals

    Greetings!
    I am seeking for an automated backup solution.
    I want to schedule a backup task on the following pattern.
    1.     On Every Monday:     Full (Level 0) bakup
    2.     From Tuesday-Friday:     Incremental (Level 1 – Differential) Backup
    3.     Saturday-Sunday:     No Backups
    I want to make sure that all the above mentioned backup tasks must be taken automatically, through the scheduler.
    I have tried to schedule it, but I don’t know how to use the rman script in the job-scheduler section in oracle.
    Your advice and solution are solicited...
    Best Regards
    Zeeshan

    You didn't mention your database version.
    If your database is 10g you can use job scheduler.
    Go to this link. It will be helpful.
    http://www.oracle-base.com/articles/10g/Scheduler10g.php
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/scheduse.htm
    Regards
    Asif Kabir

  • Automated backups does not start

    I have upgraded both my Iphone 3gs and my Ipad 1 to IOS 5.
    Everything seems to work ok - However having enabled backup to Icloud I would expect that my devices would once a day be automaticly backed up to the cloud.
    I have now watched both devices for some days, and none of the performs automated backups. 
    I have succeded in performing a manual back-up to Icloud of both the devices - even as the process took quite a while.
    I place them both in the net adapter and both devices are connected to my wifi-network.
    If someone please can tell me if I do anything wrong or help me to a way to get the automated backup to work I would really appreciate it.
    When is the automated backup perfomed? Is the bacup incremental or is it a full backup?
    Thank you in advance
    Henrik

    I have upgraded both my Iphone 3gs and my Ipad 1 to IOS 5.
    Everything seems to work ok - However having enabled backup to Icloud I would expect that my devices would once a day be automaticly backed up to the cloud.
    I have now watched both devices for some days, and none of the performs automated backups. 
    I have succeded in performing a manual back-up to Icloud of both the devices - even as the process took quite a while.
    I place them both in the net adapter and both devices are connected to my wifi-network.
    If someone please can tell me if I do anything wrong or help me to a way to get the automated backup to work I would really appreciate it.
    When is the automated backup perfomed? Is the bacup incremental or is it a full backup?
    Thank you in advance
    Henrik

  • Automated backups of OSX Server 10.5 with Time Capsule (TC)

    I am running OSX 10.5 Server on a G5. The server is working well. I have the server plugged into a TC. I would like to do automated backups from the server to the TC.
    I can read and write to the TC disk fine from the server.
    When I try to configure Time Machine to do automated backups of the server to the TC it does not work. I set the preferences in TM. It seems to accept them. But the configuration never gets saved, and so TM always complains "Time Machine Error - No backup volume has been selected. To select a backup volume, open System Preferences and choose Time Machine."
    This is of course is what I have just done, but the changes are not getting saved.
    Any ideas?
    Thanks
    A

    jp6940 wrote:
    I only have 16gb of my 120gb? hard drive left to use. Will the Time Capsule "mirror" my hard drive or can I "move" some of my large files (iTunes and iPhoto) over to the TC to free up space on my G4's hard drive?
    If you use Time Capsule with Time Machine, almost all of your computer's disk drive contents (except what you exclude) will be backed up to the Time Capsule disk. If you don't use Time Machine, you can put whatever you want to on the Time Capsule disk.
    You can also attach an external USB drive to your Time Capsule and move anything you want to that.
    I also have an Apple TV. Will this be a problem being connected too?
    No.
    I am a little confused as to how to do this. My G4 is getting pretty sluggish, and I want to clean it up some. What program can use to help get rid of the old programs I have that are not using and trash them? Do I just drag them to the trash?
    For the most part, dragging programs to the trash will eliminate all but "preference" files. To locate those, look in <yourhomefolder>/Library/Preferences.

  • Automated Backup and Backup Jobs

    While I install oracle 11g release 2 the installer asked me :-
    if I want to enable or disable automated backups for my database. if enabled, then the backup jobs uses
    the specified recovery area storage
    Please help me to get knowledge about
    1- the automated backups
    2- the recovery area storage
    Thanks a lot.

    1)If you configure automated backups, oracle will run rman daily backup to backup all datafiles to flash recovery area
    http://docs.oracle.com/html/B14399_01/install_overview.htm
    2)configure flash recovery area using db_recovery_file_dest and db_recovery_file_dest_size.
    Flash recovery area is the area where you can store permanent and transient files (like backups)
    http://docs.oracle.com/cd/B19306_01/backup.102/b14192/setup005.htm

  • Any recommendations for an automated backup application?

    Hi,
    A company that I work for is looking for an automated back up solution.
    Currently, they have Intel iMacs running 10.4.10. They want to have automated backups to their Windows server. The protocol used is Samba, if I am not mistaken. They do not want to back up their entire hard drives, only certain files.
    The dot mac Backup application is not what they want.
    I am not familiar with automated back up solutions in an office environment.
    Any recommendations are appreciated!

    I'm not sure if they want to spend the money on an Enterprise level solution, but if they do then there's one outstanding product: BRU.
    If they are looking for something mainly client oriented but that can backup to a network device then my choice is Synchronize! Pro X because it provides an almost complete backup solution. About the only thing it cannot do is backup across multiple optical media. It supports backup to network devices and will even mount a network device if required. It also supports a fairly easy method of creating backup sets consisting of selected files and/or folders.

  • Is Metadata Backup possible to be automated through taskflows?

    Hi,
    I wanted to know if metadata backup is possible through taskflows. I am aware that there is an Extract Data in the Actions when you create a taskflow but where do the files go after being extracted? Can I specify a specific server or path for its location? If yes, where can i define it?
    I hope you could help me out :)
    thank you!

    Which product do you want to back up the metadata, which version are you on
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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/

Maybe you are looking for