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 Planned for future release
Workspace Product Master
Created by Guest
Created on Aug 8, 2019

$TOP/src/db/scripts/backup/db2_fast_import.sh does not currently accommodate a DB2 HADR environment

The IBM Knowledge Center content  currently does not indicate support for a DB2 HADR environment.   

Background:
Our db2_fast_import.sh performs an embedded DB2 load command as such:
db2 "load from ${IXFFILE} of IXF modified by pagefreespace=0 savecount 100000 messages ${MSGFILE} replace into ${TABLENAME} statistics use profile nonrecoverable indexing mode rebuild" >> load_${DBUSER}.log

When a HADR configuration is set up in DB2, there is a DB2 registry variable that controls this above COPY FLAG for DB2 loads that are nonrecoverable.  The DB2 registry is BLOCKNONLOGGED and by default is set to NO.  However in a HADR environment this parameter MUST be set to YES for logging to the standby database server.   A simple check of this registry can be done with:  

$ db2 connect to

$ db2 get db cfg for | grep BLOCKNONLOGGED


Other important detail:

For a DB2 load to work against a HADR environment 
 
  • You would need to include the 'COPY YES' with the load command
  • Remove the 'nonrecoverable' and add copy yes to
or
  • to remove the nonrecoverable in DB2 load command
  • set  the DB2_LOAD_COPY_NO_OVERRIDE for the instances (the default is COPY NO) 

Bottom line is the DB2 load can't be unrecoverable in a DB2 HADR environment  - this will cause the standby DB2 server to be useless if a takeover occurs. 
 
$ db2 get db cfg for sample | grep -i block
Block log on disk full                (BLK_LOG_DSK_FUL) = NO
Block non logged operations            (BLOCKNONLOGGED) = NO

$ db2 "load from t2.del of del insert into t2"
--> OK

$ db2 update db cfg  for sample using BLOCKNONLOGGED YES
DB20000I  The UPDATE DATABASE CONFIGURATION command completed successfully.

db2 "load from t2.del of del insert into t2"
SQL2032N  The "COPY FLAG" parameter is not valid.  SQLSTATE=22531


$ db2 update db cfg for sample using BLOCKNONLOGGED NO
DB20000I  The UPDATE DATABASE CONFIGURATION command completed successfully.

$ db2 "load from t2.del of del insert into t2"
--> OK
 

Reference:  RTC 113705

Needed by Date Nov 1, 2019