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 Delivered
Workspace Informix
Components Informix Server
Created by Guest
Created on Apr 18, 2017

temp Dbspace in RAM

We make high use of temp. Tables in our applications. With todays hardware availability it seems reasonable to me to hold the complete tmp. dbspace in the RAM (or RAMDISK). Unfortunately this is not supported by Informix IDS directly.

Advantages of this solution are IMHO:

* Performance of temp tables
* Reduce writes to SSD
* Other informix users have similar needs (Headline: Only in-memory temp table ID: 54307)
  • Admin
    Karen Qualley
    Reply
    |
    Jun 12, 2019

    Thanks for the input on this!

  • Guest
    Reply
    |
    Jun 12, 2019

    I would add that in v14.10 the chunk file for a temp dbspace no longer has to have proper reserved pages. The engine will recreate the temp dbspace at startup. The file just has to exist. From the v14.10 documentation:

    Whenever you start the database server, all chunks in temporary dbspaces are recreated from scratch. These chunks can therefore be located on RAM drives if desired.

    So essentially this one is done.

  • Guest
    Reply
    |
    Jan 16, 2019
    1. Note that you CAN do this.
    2. Create one or more RAM disks
    3. Create a "chunk" file on each RAM disk.
    4. Create a temp dbspace using each RAM disk chunk file.
    5. Shutdown the instance.
    6. Copy the chunk files to permanent storage (you can gzip/bzip2 the files down to a few KB since they will be empty except for the reserved pages.
    7. Restart the instance. 

    Now you can have your startup scripts do the following:

    1. Recreate the RAM drives
    2. Copy the saved file images back to the correct RAM drives (uncompressing if needed)
    3. Start the Informix instance.

    This even works if the server's host crashes since the engine assumes anything left in temp spaces is not needed and clears them out anyway on startup.