How to open pluggable database (PDBs) in Oracle 19 C? First need to log in and check the PDB status So the open mode is mounted for PDB APEX_5. Lets open the PDB. How to Close PDBs? Read more
How to install ORACLE 19 C on windows 10 (64 bit) To install ORACLE 19 C we need to check system requirements first. Oracle Database for Windows x64 is supported on the following operating systems: Now let’s download the database... Read more
Create user 12C: connect system/manager as sysdba alter session set "_ORACLE_SCRIPT"=true; / create user lime identified by limeoracle; / grant dba to lime; / connect lime/limeoracle / create table test(lime number); Read more