Hi,
I'm facing an issue with Direct database request in OBIEE 12.
I have a direct query report with prompts, one of the prompt is "display_id " ( prompt variable: @{PV_STUDENT_ID_SELECTION)
Here is my SQL statement
select
display_id,
name,
city
from dwh_dim_student
where
INSTR(','||'@{PV_STUDENT_ID_SELECTION}'||',', ','||DISPLAY_ID||',') > 0
when I'm selecting more than 1000 values in the prompt, I'm receiving this error
01704. 00000 - "string literal too long"
*Cause: The string literal is longer than 4000 characters.
I understand error but I don't know how to solve it using Direct database request
Please advise,
Thanks
Alex