Changes between Version 32 and Version 33 of OracleTestSetup


Ignore:
Timestamp:
Jul 12, 2019, 9:53:47 PM (5 years ago)
Author:
Serkan Hosca
Comment:

Need to set _ORACLE_SCRIPT to true otherwise create user will fail.

Legend:

Unmodified
Added
Removed
Modified
  • OracleTestSetup

    v32 v33  
    4444    $ sqlplus sys/oracle@localhost/orcl as sysdba
    4545    SQL> ALTER SESSION SET CONTAINER=orcl;
     46    SQL> ALTER SESSION SET "_ORACLE_SCRIPT"=true; 
    4647    SQL> CREATE USER django IDENTIFIED BY django;
    4748    SQL> GRANT DBA TO django;
     
    107108    sqlplus sys/Oradoc_db1@localhost/ORCLCDB.localdomain as sysdba
    108109    SQL> ALTER SESSION SET CONTAINER=ORCLPDB1;
     110    SQL> ALTER SESSION SET "_ORACLE_SCRIPT"=true; 
    109111    SQL> CREATE USER django IDENTIFIED BY django;
    110112    SQL> GRANT DBA TO django;
Back to Top