The RPD and WebCat can be found http://download.oracle.com/technology/products/bi/files/oracle_bi_sample_analysis_setup_files.zip
It has same nice statistics demos!
Till Next Time!
A collection of OBIEE / OBISE stuff from 101 till 404. I just put the things here I run into.
The RPD and WebCat can be found http://download.oracle.com/technology/products/bi/files/oracle_bi_sample_analysis_setup_files.zip
It has same nice statistics demos!
Till Next Time!
6.2 EVALUATE_AGGR Function
This function is intended for aggregate functions
with group by clause.
Syntax: EVALUATE_AGGR('DB_Aggregate_Function(%1)',
{comma separated Expression})
Example: SELECT year.year, sales.qtysold, EVALUATE_AGGR('sum(%1)', sales.quantity) From SnowFlakeSales;
This function is very useful if you want to use the build in statistics functions from the ORACLE database like:
The following example calculates the coefficient of correlation between the list prices and minimum prices of products by weight class in the sample view oe.products:SELECT weight_class, EVALUATE_AGGR('CORR(%1,%2)' as double, product_information.list_price, product_information.min_price)
FROM product_information;
If you get a "[38083] The Attribute
Good info can also be found here:
http://www.oracle.com/technology/products/bi/pdf/Oracle%20Business%20Intelligence%20Server%20and%20Embedded%20DB%20Functions.pdf