× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Dynamic SQL will probably be your best bet.

This is what you mentioned using:



select on qsys2.object_statistics, and my

Where objname in (:l_objects)

You also mentioned l_objects containing "'OBJECT1', 'OBJECT2'"

IN does not work like this over a variable.


You are basically doing this:



select * FROM TABLE(QSYS2.OBJECT_STATISTICS(…)) X

Where OBJNAME in ( '''A'',''B'',''C'',''D''' )


The SPLIT didn’t work because you are including the single quote inside your L_OBJECTS string.

If you used Dynamic SQL then you could build the statement as you expected it to work.

If you stay with Static and stop adding the quotes into your string then the split will work.
Split would work if the string contained “OBJECT1, OBJECT2, OBJECT3” without the quotes.


If you don’t want to use Split, and keep the quotes then you can use POSITION like this:

WHERE Position( '''' || TRIM(OBJNAME) || '''' IN :L_OBJECTS ) > 0

--
--
--
Chris Hiebert
Senior Programmer/Analyst
Disclaimer: Any views or opinions presented are solely those of the author and do not necessarily represent those of the company.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.