I am getting the subjected error while trying to install data miner repository in SQL developer.
after double clickitng the connection in data miner tab as in the below screenshot I followed the following path to install the data miner repository
step 01
step 02
step 03
step 04
step 05
step 06 then it gets the following error.
Error starting at line : 19 in command -
create user ODMRSYS identified by Alxv19x default tablespace &&1 temporary tablespace &&2 quota UNLIMITED on &&1 PASSWORD EXPIRE
Error report -
ORA-65096: invalid common user or role name
65096. 00000 - "invalid common user or role name"
*Cause: An attempt was made to create a common user or role with a name
that was not valid for common users or roles. In addition to
the usual rules for user and role names, common user and role
names must start with C## or c## and consist only of ASCII
characters.
*Action: Specify a valid common user or role name.
could someone help me please ?
We got the same issue once before, the solution is as follows:
create user ODMRSYS identified by Alxv19x default tablespace &&1 temporary tablespace &&2 quota UNLIMITED on &&1 PASSWORD EXPIRE;
alter session set "_oracle_script"=true;
the final result is:
alter session set "_oracle_script"=true;
create user ODMRSYS identified by Alxv19x default tablespace &&1 temporary tablespace &&2 quota UNLIMITED on &&1 PASSWORD EXPIRE;