suche 36x36
  • CURSOR Service Distribution
           
     

    CURSOR Service Distribution

    24x7 Always Up

    pfeil
  • Logistics and transportation
           
     

    Logistics and transportation

    24x7 Always Up

    pfeil
  • Industrial environments
           
     

    Industrial environments

    24x7 Always Up

    pfeil
  • Trade and commerce
           
     

    Trade and commerce

    24x7 Always Up

    pfeil
  • Online shopping
           
     

    Online shopping

    24x7 Always Up

    pfeil
  • We care about your databases
           
     

    We care about your databases

    24x7 Always Up

    pfeil
 

Erik Stahlhut

CURSOR Service Distribution

We keep your IBM databases running

             
 

Monitoring Monitoring

Monitoring

  • Companies with existentially important databases trust in our Informix Monitoring. We prevent system failures before they occur.

  • Automated monitoring around the clock. Early detection of bottlenecks based on history data with our CURSOR Admin-Scout.

  • Administration for all installation sizes. Standard, remote or standby administration, up to 24x7 availability for systems with high availability.

  • Individual adjustments to the service levels of our customers with short response times and personal contact persons in support.

Discover more about Informix Monitoring with the CURSOR Service Distribution!
 

ServiceService

Service

  • Requirements from all areas of data management. Service packages or individually agreed projects like:
    • Setup of replications or high availability systems;
    • Performance, runtime analysis, tuning;
    • Release, platform or cloud migration;
    • Access control, encryption, archiving.
  • CURSOR Service Distribution is a long-standing IBM High-Value Service Provider for IBM Informix.

  • Specially for Informix we offer additional online seminars, workshops and training courses.

Information about service and support, so feel free to contact us with your project!
 

SupportSupport

Support

  • Request for support services for IBM databases. Our customers benefit from the competence of more than 25 years of Informix support and system-oriented development of database tools.

  • In case of support we are the first and central contact persons. We have a direct line to the IBM and HCL support departments and are available for our customers with 24x7 agreements around the clock.

  • Even Informix customers without active IBM product maintenance can take advantage of our first-aid support.

Book a support ticket on our website or just call us!
 
 
 
 

IBM Software

for manufacturers

and technology partners

IBM Embedded Solution Agreement (ESA)
integration of IBM software into your solution!

  Service
  • Integrate IBM software into your solution!

  • Benefit from the power of IBM software, take advantage of the attractive conditions for IBM licenses and maintenance!

  • The employees of CURSOR Service Distribution have twenty years of experience in indirect sales of IBM software (OEM/ASL/ESA licensing). We show you how to become an IBM ESA Business Partner!

esa bp werden blue 1000x100

 
 
 
 

CompetenceService

in Informix Administration

 
 

the CURSOR

Admin-Scout for Informix

esa bp werden blue 1000x100

esa bp werden blue 1000x100

 

 

  • The Informix tool right from CURSOR Informix Support.

  • Developed by administrators for administrators.

    With a background of over 25 years of Informix support, administration and system-oriented programming, we have been developing and distributing the Admin Scout since 2015.

  • By our Managed Service approach, the Admin Scout is suitable for almost all application areas of the Informix database system. Our customers are IT departments and administrators in commerce, banks, universities, trade and industry.

 
 
 
 

About us

the CURSOR Service Distribution

  • High-Value Service Provider for IBM Informix.

  • Distribution for IBM Data-Management Software (OEM/ASL/ESA licensing for ISVs).

CURSOR Service Distribution is a business unit of CURSOR Software AG, resulting from the acquisition of the Informix and development tool specialist "Nonne & Schneider" at the end of 2005.

We offer extensive technical services for IBM Informix, and as a high-value service provider we are the direct contact for all our customers' service needs for these databases.

Our services are independent from licensing through our company. Well-known customers rely on our monitoring and use our tools, while licensing and update maintenance are contracted directly with IBM.

 

CURSOR Software AG

For over 25 years CURSOR has been developing and marketing CRM solutions for the upper middle class and large concerns.

  • Together.
    Together with you we will lead your CRM project to success. Our experts offer comprehensive services from a single source: software development, consulting, software introduction, training, support - and the ongoing optimization of your CRM system.

  • Inspiring.
    We "live" CRM and want to inspire you with CRM software and services Made in Germany. The benchmark for this is the enthusiasm and loyalty of our customers - and their customers.

  • Successful.
    For 30 years the name CURSOR has stood for excellent customer and business process management - CRM and BPM. We measure our success by the satisfaction and market success of our customers. Learn more about successful CRM projects directly from our customers.

 
 
Latest versionsfixlist
11.1.0.7 FixList
10.5.0.9 FixList
10.1.0.6 FixList
9.8.0.5 FixList
9.7.0.11 FixList
9.5.0.10 FixList
9.1.0.12 FixList
Have problems? - contact us.
Register for free anmeldung-x26
Contact form kontakt-x26

DB2 - Problem description

Problem IC68794 Status: Closed

AUTOMATIC SETTING FOR STATEMENT HEAP MAY RESULT IN INCONSISTENT PERFORMANCE
DUE TO EARLY FALLBACK TO GREEDY JOIN OPTIMIZATION

product:
DB2 FOR LUW / DB2FORLUW / 950 - DB2
Problem description:
The AUTOMATIC setting for STMTHEAP currently relies on some 
internally calculated memory thresholds to decide when to 
discontinue dynamic join enumeration and fall back to greedy 
join enumeration. This prevents the allocation of excessive 
amounts of memory under dynamic join enumeration. 
 
The current thresholds used for making the decision to 
discontinue dynamic join enumeration can be triggered in an 
inconsistent and unpredictable manner.  This may result in 
different access plans for the same query at different times - 
sometimes compiled with dynamic join, and sometimes greedy. A 
query compiled under greedy may not perform as well as with 
dynamic,  so the differing access plan could result in 
differences in performance. 
 
If a query is experiencing unexpected changes in performance 
when STMTHEAP is AUTOMATIC,  a secondary indicator that this may 
be related to this issue would be unexpected SQL0437W (rc=1 
warnings returned to the application. 
 
With this APAR, a consistent upper limit for dynamic join memory 
usage will be used when Statement Heap is set to AUTOMATIC. That 
upper limit will be the configured value underlying the 
AUTOMATIC setting, which previously had not been utilized. There 
is no change to the behaviour of allowing unlimited growth 
during greedy join enumeration under AUTOMATIC, and there is no 
change to the behaviour when Statement Heap is set to a fixed 
value. 
 
For example, 
  db2 update db cfg for sample using 8192 AUTOMATIC 
 
results in the setting: 
  STMTHEAP = AUTOMATIC (8192) 
 
Under the old behaviour, the value 8192 had no effect. Internal 
volatile thresholds were used for dynamic join memory allowance, 
and the greedy join memory allowance was unlimited. 
 
Under the new behaviour, the dynamic join allowance is 8192 (4K 
pages), and the greedy join allowance remains unlimited. 
 
Note that the statement heap growth can still be limited by 
higher-level memory limits such as APPL_MEMORY, INSTANCE_MEMORY, 
and system memory. 
 
One further change is that the default Statement Heap setting 
for 64-bit DB2 has been doubled from AUTOMATIC (4096) to 
AUTOMATIC (8192). This change affects only new databases created 
on 64-bit instances.  The Statement Heap setting is not altered 
on migration or Fix Pack upgrades. 
 
In some cases, the existing underlying value for the AUTOMATIC 
setting may reflect a lower memory limit for dynamic join than 
the effective limit at a given time under the old behaviour. If 
SQL0437 (rc=1) warnings are received after applying this APAR, 
it may be necessary to increase the underlying value for 
STMTHEAP. 
 
In other cases, the existing underlying value for the AUTOMATIC 
setting may reflect a higher memory limit for dynamic join than 
the effective limit at a given time under the old behaviour. 
After applying this APAR fix, if performance is degraded due to 
increased query compilation time, it may be necessary to 
decrease the underlying value for STMTHEAP. 
 
Updates can be performed dynamically as follows: 
   db2 connect to <db> 
   db2 update db cfg for <db> using STMTHEAP <new value> 
AUTOMATIC
Problem Summary:
**************************************************************** 
* USERS AFFECTED:                                              * 
* Configurations with Statement Heap (STMTHEAP) set to         * 
* AUTOMATIC                                                    * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* See Error Description                                        * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* Update STMTHEAP to non-AUTOMATIC value                       * 
****************************************************************
Local Fix:
Update STMTHEAP to a non-AUTOMATIC value (for example, the 
current on-disk value underlying AUTOMATIC)
available fix packs:
DB2 Version 9.5 Fix Pack 7 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 8 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 9 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 10 for Linux, UNIX, and Windows

Solution
Problem first fixed in DB2 Version 9.5 Fix Pack 7
Workaround
not known / see Local fix
BUG-Tracking
forerunner  : APAR is sysrouted TO one or more of the following: IC69070 IC69071 
follow-up : 
Timestamps
Date  - problem reported    :
Date  - problem closed      :
Date  - last modified       :
21.05.2010
12.10.2010
11.03.2011
Problem solved at the following versions (IBM BugInfos)
9.5.FP7
Problem solved according to the fixlist(s) of the following version(s)
9.1.0.7 FixList
9.5.0.7 FixList