Active IQ Unified Manager Discussions

How to increase the amount of results

CHRISTIAN_UMREIN
6,963 Views

Hi all,

how can I increase to amount of result in the value-field when I run a query?

My results are limited to 9999 values.

Thanks,

Chris

1 ACCEPTED SOLUTION

goodrum
6,340 Views

Well, there is a way to have a free text field which feeds the drop down.  This will allow you to get the best of both worlds.  For example:

I have an userInput named $serverFilter which is find in a FindChart as a return variable and is not used anywhere else.  I can create a second userInput named $serverName which will be used to actual process.  I set the second to a query type like so:

SELECT

   hostname

FROM

   elch.server

WHERE

   hostname LIKE '${serverFilter}%'

This will return the list of servers based on your original input.  Now, I know that you could create one userInput and start typing in the dropdown to which  the selection will jump to the closest match.  This would work if the number of records was under 9,999 records. 

Another option would be to add other fields into the table.  Things like datacenter location, application type, OS type, etc will help to do the same thing.

View solution in original post

11 REPLIES 11
Public