views:

454

answers:

2

I have a query in SSRS (against oracle)

select * from myTable
where t.user = :myUser

However, when I go to preview tab, it does not give me an option to input the myUser value.

I thought the whole point of adding a parameter is so that user can interactively enter values?

What exact steps am I missing?

A: 

Make sure the Parameters are actually defined in the Report -> Report Parameters menu

pfunk
No man. @ is only for SQl queries, for oracle, i must use :
Saobi
yeah, I missed that the first time I read it, edited that part out
pfunk
A: 

On the DataSet definition page, there should be a tab called Parameters. You should be able to list the Query Parameters there, and hook them up to Report Parameters. With SQL Server queries it does this for you, but you may need to do it yourself for Oracle.

Rob

Rob Farley