Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com


Status Not under consideration
Workspace Db2
Created by Guest
Created on Feb 9, 2015

Ability to backup/clone a database across the network (redirected restore)(RIMS)

Verizon needs the capability to issue a set write suspend IO command on database. Get the data to another instance at another location and bring it up. Informix has this ability and Verizon likes it. This is called a redirected restore. Verizon's databases are too large to be able to backed up and restored in a tradional manner in a timely manner. Note from customer: Jill and/or Colin, This has become very hot lately! Is there any way, either via DB2 native commands, or using Netbackup to do a backup of a source system and restore it to a target system without actually storing the output on disk or tape (Informix redirected restore)? I know we can do a backup of a remote DB to a filesystem on that remote system, or backup to an NFS mounted filesystem, but in both those cases, there's a backup file that is created, and in the case of the remote DB backup, you still need to ftp the image to the destination server. Also, I know you can backup/restore to/from a named pipe, but the reader/writer operations have to be on the same local server, and the restore process has to be kicked off before the backup process (how useful is that?). The business problem, is that it takes too long to recreate an HADR environment and there's a need for additional disk to support large DB backup images, after actually declaring a DR. We had a situation last week where we were within minutes of declaring DR on IVAPP North production, due to a System Administrator opps. The only thing that prevented us from declaring DR was the amount of time and effort it would have taken to 'rebuild' the old primary once it was available (at least 1 week). Being without DR for that long is not acceptable. We had put a formal request in for DB2 providing the equivalent functionality as Informix's redirected restore, what is the status of that request? Another note: During conversations with one of our Informix DBA managers this morning, Tommie Stroup, he indicated that Informix supports an operation called Redirected Restore that provides capabilities that we find very useful in that environment. Essentially, this operation allows the restoration, or even an initial materialization, of a Cold Backup taken at a primary site to be delivered over the network to a secondary, geographically diverse site, for purposes of restoration. He has found this feature extremely useful for a number of purposes, which does not require sending tapes or other media to the secondary location.
  • Guest
    Reply
    |
    Apr 11, 2019

    You can do the backup/restore via named pipes even via network borders.

    1. source system create 1-n named pipes (mkfifo /tmp/my_backup_pipe_1 ...)
    2. target system  create 1-n named pipes (mkfifo /tmp/my_restore_pipe_1 ...)
    3. from target system "connect" two pipes (ssh <source host> -c "cat /tmp/my_backup_pipe_1" > /tmp/my_restore_pipe_1)
    4. Start restore on target from local restore pipe
    5. start backup into source system pipes
     
    amount of pipes parallelizes the process and performance depends on I/O subsystem and amount/size of tablespaces