|
Ah - didn't see that the quotes are in the string - so if the string
contains something like 'OBJ1', 'OBJ2', 'OBJ3' the following code should
work:
...
where objname in (
select trim(trim(element), '''')
from table(systools.split('XXX, YYY', ','))
)
...
The split() creates the result table - the inside trim() removes
potentially spaces - and the outside trim() removes the quote characters.
The way to dynamic SQL should always be the last resort - because dynamic
SQL is not optimizable at compile time.
HTH
Daniel
Von meinem iPad gesendet
Am 18.04.2023 um 21:50 schrieb Hiebert, Chris <chris.hiebert@xxxxxxxxxxxxxx>:
Dynamic SQL will probably be your best bet.your L_OBJECTS string.
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
expected it to work.
If you used Dynamic SQL then you could build the statement as you
the split will work.
If you stay with Static and stop adding the quotes into your string then
Split would work if the string contained “OBJECT1, OBJECT2, OBJECT3”without the quotes.
POSITION like this:
If you don’t want to use Split, and keep the quotes then you can use
author and do not necessarily represent those of the company.
WHERE Position( '''' || TRIM(OBJNAME) || '''' IN :L_OBJECTS ) > 0
--
--
--
Chris Hiebert
Senior Programmer/Analyst
Disclaimer: Any views or opinions presented are solely those of the
--related questions.
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
As an Amazon Associate we earn from qualifying purchases.
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.