OBIEE Usage Tracking Stopped Working 2016 - 11.1.1.7.140225 (Build 140209.2017 - Page 2 — Oracle Analytics

Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

OBIEE Usage Tracking Stopped Working 2016 - 11.1.1.7.140225 (Build 140209.2017

Received Response
91
Views
12
Comments
2»

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.

  • Ok I will try that solution, seems like a good start ! thanks a lot