Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
1 like 0 dislike
3.4k views
in SQL Server Reporting Services by 11 12 19
retagged by

I am using SQL Server Reporting Services (SSRS), and I am using Report Builder to create a report from Oracle database. in my report I have a parameter called @ID. and I need to pass this parameter in the Query Designer in the Report Builder Dataset for Oracle Query in SSRS as below,

SELECT CustID FROM Customers where CustID=@ID

But when run this query I got this error

An error occurred while executing the query
ORA-00936 Missing Expression
ORA-00936 Missing Expression

Pass parameter in SSRS report query: ORA-00936 Missing Expression

I also tried to preview the report by clicking on the RUN button, but it didn't work , and I got this error

An error occurred during local report processing.
An error has occurred during report processing.
Query execution failed for data source
ORA-00936:Missing Expression[]

An error occurred during local report processing ORA-00936 Missing Expression

What am I missing? and How can I pass parameter in SSRS report for Oracle Query?


1 Answer

1 like 0 dislike
by 86 158 330
selected by
 
Best answer

How to pass parameter for Oracle Query in SSRS?

First, you should be aware of there are some syntax differences between the Oracle Query and the SQL Server Query when you pass a parameter in SSRS report query.

In your case, to can pass a parameter in Oracle Query in SSRS, you just need to replace @ with :

EX: SELECT CustID FROM Customers where CustID=:ID

how to pass parameter in ssrs report query Oracle

By the way, even if you have replaced @ with :, the Oracle Query will not work in Query Designer as expected and you will get the same error ORA-00936 Missing Expression, Instead, you should click on the RUN button to see the result.

by 11 12 19
0 0
Brilliant, Works like charm, Thanks Mohamed!
If you don’t ask, the answer is always NO!
...