Skip to Main Content
Integration


This is an IBM Automation portal for Integration products. 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
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


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.


Status Under review
Created by Guest
Created on Aug 26, 2025

Improve dmpmqcfg 1line mqsc for better backup handling

To ensure complete disaster recovery of our appliance, we regularly back up our queue manager configurations using the dmpmqcfg command (https://www.ibm.com/docs/en/ibm-mq/9.4.x?topic=reference-dmpmqcfg-dump-queue-manager-configuration). This tool currently supports several output formats:

  • mqsc: Multi-line MQSC suitable for direct input to runmqsc

  • 1line: MQSC with all attributes on a single line, useful for line diffing

  • 2line: MQSC with each command on two lines (command + commented immutable values)

We currently use the mqsc format, as it contains all the necessary information to fully restore a queue manager. However, this format is somewhat verbose and includes attributes (such as ALTDATE, CURDEPTH, and others prefixed with *) that change frequently and are not required for restoration.

Example:

DEFINE QLOCAL('TEST.QUEUE') +
ACCTQ(QMGR) +
* ALTDATE(2025-06-01) +
* ALTTIME(08.57.15) +
...

The definition of a local queue spans multiple lines and includes many ever-changing attributes.

We have evaluated the 1line format, but it omits several attributes necessary for a full backup and restore. For example:

# mqsc

DEFINE PROCESS('SYSTEM.DEFAULT.PROCESS') +
APPLTYPE(UNIX) +
APPLICID(' ') +
ENVRDATA(' ') +
USERDATA(' ') +
DESCR(' ') +
* ALTDATE(2020-02-06) +
* ALTTIME(10.59.39) +
REPLACE

# 1line

DEFINE PROCESS('SYSTEM.DEFAULT.PROCESS') APPLTYPE(UNIX) REPLACE

As shown above, the 1line format omits several attributes present in the mqsc output.

Feature Request

We request the addition of a new output format to dmpmqcfg that:

Preserves all the data included in the mqsc format (excluding the * attributes)

Outputs each object definition on a single line, similar to the 1line format

Example of desired output:

DEFINE PROCESS('SYSTEM.DEFAULT.PROCESS') APPLTYPE(UNIX) APPLICID(' ') ENVRDATA(' ') USERDATA(' ') DESCR(' ') REPLACE

This would greatly simplify configuration management and disaster recovery processes by providing a concise, complete, and consistent backup format.

Idea priority Medium