Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> OLAP Configuration
I was trying get start with sql model, but get this message.
What is wrong?
I am on XP Professional with 10.1.0 (10g).
SQL> insert into t
2 select rownum, rownum+10
3 from all_objects
4 where rownum <= 10
5 /
10 rows created.
SQL>
SQL> create or replace view v as select empno, rownum rn, sal from t;
View created.
SQL> SQL> SQL> select empno, rn, sal
4 partition by ( empno ) 5 dimension by ( rn ) 6 measures ( sal ) 7 rules 8 ( sal [ any ] = 2 * sal [ cv(rn) ] ); from v *