EVALUATE(dense_rank() over (PARTITION BY %1 ORDER BY %2'
198237Mar 12 2009 — edited Mar 12 2009I'm using this statement in OBIEE (EVALUATE(dense_rank() over (PARTITION BY %1 ORDER BY %2' as integer, "-tabel1"."kolom","tabel2".kolom)).
The %1 parameter comes from another table as the %2 parameter. There is no direct join between these tables. This causes an cartesian product. How can i solve this the easy way. Should I create a view to calculate the top 10 and import this in the ph layer or is there an other way.
We use these top 10 calculations for many things.