0

当查询不包含绑定变量(参数标识符)但在搜索列表查询的约束中引入绑定变量时,Oracle BI Publisher (10g) 中搜索参数的搜索列表(值列表)工作正常,它继续无休止地寻找。

在菜单参数的值列表中使用绑定变量可以正常工作。

这是关于 BI Publisher 的问题,还是我应该怎么做才能通过收听另一个参数来刷新搜索列表?

编辑:搜索参数的 LOV 代码

select col1|| ' - ' || col2 as item
  from table --search works on applying no filter

select col1|| ' - ' || col2 as item
  from table
 where col3 = substr(:I_col3_param, 0, instr(:I_col3_param,'-')-2)) -- search doesn't work on applying this filter

第一个查询显然会返回更多的数据,但它的搜索时间比第二个查询要短。所以,问题不应该是由于大量的数据。

4

0 回答 0