Couldn't find the _SYS_BIC schema. Tried many options mentioned in SCN. But couldn't fetch anything out the solution in SCN.
Recently I came across following steps:
1. Make sure _SYS_REPO has privilege SELECT WITH
GRANT OPTION for the schemas used. In order to grant _SYS_REPO this privilege
you can execute the following statement:
GRANT SELECT ON SCHEMA <YOUR_SCHEMA> TO _SYS_REPO WITH GRANT OPTION;
2. Make sure the user activating the Object has at
least SELECT privilege over the schemas used within the scenario. SQL
statement to grant this privilege would be:
GRANT SELECT ON SCHEMA <YOUR_SCHEMA> TO <USER_THAT_WILL_ACTIVATE_ANALYTIC_OBJECT>;
3. Make sure all the dependencies of the Analytic
Object to be activated is contained in the Analytic Privilege assigned to the
user that will actually activate the Main Analytic Object.
First option is known to everyone.
I am stuck with the second option. Can I know the user that Activate analytical object.