Categories
- All Categories
- 4 Oracle Analytics Sharing Center
- 10 Oracle Analytics Lounge
- 189 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.4K Oracle Analytics Forums
- 5.9K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 65 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
How to perform function on a multiple value parameter?

Akash R
Rank 1 - Community Starter
I'm trying to perform a function on parameter with multiple inputs oracle BI.
It's a LoV parameter where u can select multiple values.
It shows invalid number of arguments.
I want to do something like,
SELECT * FROM table
WHERE value IN LOWER(:Parameter);
Tagged:
0
Answers
-
Where are you writing that query in OBIEE?
The error message (probably ORA-00909: invalid number of arguments ) is your database telling you that you are passing too many arguments to LOWER, the function only take one single parameter, not a list of values.
0