I've installed Oracle Apex 19.1 on Oracle XE 18c. I then created an Apex workspace for which Apex automatically creates a schema which I called MYSCHEMA
. Apex reports "Database user MYSCHEMA
created with default tablespace APEX_1270566619000339
using datafile D:\APP\USER\PRODUCT\18.0.0\ORADATA\XE\XEPDB1\APEX_1270566619000339.DBF"
. I also created a table in MYSCHEMA
called EMPLOYEES
.
I previously had a 11g XE which I uninstalled and replaced with the Oracle XE 18c. I could connect using the same XE database from that previous database in TOAD. It automatically picks up the new OraDB18Home1
. I didn't change the tnsnames.ora
. I can connect to the MYSCHEMA
user using the same password as SYS
.
However I don't see the EMPLOYEES
table created in Apex when I use
select *
from all_tables
where table_name like '%EMPLOYEE%';
Where am I going wrong?
PS. I have now noticed that "Connect as SYSDBA
" was on and it fails to connect to the user MYSCHEMA
if I choose "Connect as Normal". I have tried all the passwords (2) I have used in setting this up. Not sure if there is a default password I should be using.