Installing APEX 21.1 Oracle APEX Dev team announced the APEX 21.1 on May 12 2021. Let’s get it installed and running. Step 1 Download Step 2 Extract Step 3 Create PDB for…
How to install APEX in Oracle 19 C Download APEX from Oracle products.Download APEX 19.2 Oracle 19 C is multi tenant architecture database. We can create multiple Pluggable databases (PDBs…
How to open pluggable database (PDBs) in Oracle 19 C? First need to log in and check the PDB status Copy CodeCopiedUse a different BrowserC:\WINDOWS\system32>sqlplus /nolog SQL*Plus: Release 19.0.0.0.0 -…
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…
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…