Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE Usage Tracking Stopped Working 2016 - 11.1.1.7.140225 (Build 140209.2017
Answers
-
Ok, with no access to MOS the option you have is to create the data yourself.
In the end it's all around dates, so using a normal query and the functions Oracle provides to work with dates (to_char etc.) you can generate the same kind of data, it will maybe takes you half an hour but you can do it column after column.
As a beginning you can start by this: select TO_DATE('20151231','YYYYMMDD') + LEVEL from dual connect by LEVEL < 1828;
It will return you all the days between 1.1.2016 and 31.12.2020.
0 -
Ok I will try that solution, seems like a good start ! thanks a lot
0