I am brand new to Analysis Server...
I have created a time dimension from a table in SQL 2000 but I can't get the dimension to be created when I use an Oracle table. Both tables have the same data and format. Any suggestions?
Here is the oracle ddl...
CREATE TABLE TIME_DIMENSION (
TIME_PK NUMBER NOT NULL,
THE_DATE DATE NOT NULL,
THE_YEAR VARCHAR2 (4),
THE_MONTH VARCHAR2 (3),
CONSTRAINT PK_TIME_DIMENSION
PRIMARY KEY ( TIME_PK ) ) ;
I have created a time dimension from a table in SQL 2000 but I can't get the dimension to be created when I use an Oracle table. Both tables have the same data and format. Any suggestions?
Here is the oracle ddl...
CREATE TABLE TIME_DIMENSION (
TIME_PK NUMBER NOT NULL,
THE_DATE DATE NOT NULL,
THE_YEAR VARCHAR2 (4),
THE_MONTH VARCHAR2 (3),
CONSTRAINT PK_TIME_DIMENSION
PRIMARY KEY ( TIME_PK ) ) ;