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 Future consideration
Workspace Informix
Components Informix Server
Created by Guest
Created on Jan 24, 2022

Need a function or pseudo-field to return the number of elements in a BSON array

Put in simplest terms, if I have a JSON/BSON record with an embedded array, I need to know how many elements are in the array. I need a function similar to bson_size() (which returns the string length of the total array) which instead returns the number of elements in the array. Let's call it bson_array_count() that would look something like this (simulation):


create table bson_array( one serial, data bson );insert into bson_array values (1, '{id:1234,vals:[{fname:"fred",lname:"flintstone"},{fname:"barney",lname:"rubble"},{fname:"wilma",lname:"flintstone"}]}'::bson );


select bson_array_count( data, "vals" ) from bson_array where one = 1;


expression

3


MongoDB has a count() function for this and other JSON interfaces offer a length() function or pseudo-element. The latter might look like:


select data.vals.count from bson_array where one = 1;


How can we claim compatibility with the MongoDB API if we don't supply an equivalent to the count() function? And if it's available at the API layer through the wire protocol listener (I haven't seen it documented to be there) then why not implement it in the SQL layer?


Needed By Yesterday (Let's go already!)
  • Guest
    Reply
    |
    Feb 7, 2022

    It turns out that there is such a function which is undocumented:

    let nelem = bson_array_size( brec, 'array_fld' );

    Where "brec" is the name of the BSON column and "array_fld" is the name of the array type field within that BSON column value as a quoted string (or the content of a host variable). Sample (using a literal JSON string cast to BSON):

    > execute function bson_array_size( '{"totmiles":320,"state_miles":[{"state":"IL","miles":15},{"state":"IN","miles":152}]}'::json::bson, 'state_miles' );

    (expression)

    2

    1 row(s) retrieved.