Skip to main content

Questions tagged [oracle-21c]

Oracle database version 21c. Please also tag [oracle] for search purposes.

Filter by
Sorted by
Tagged with
0 votes
0 answers
18 views

I have a table defines as create table CO.PRODUCTS ( PRODUCT_ID NUMBER generated by default on null as identity constraint PRODUCTS_PK primary key, PRODUCT_NAME ...
Jin Kwon's user avatar
  • 175
0 votes
1 answer
80 views

We have migrated a standalone Oracle database into an Oracle 21 multitenant database. We had run the DBMS_RESOURCE_MANAGER.CALIBRATE_IO package procedure in the source database prior to migrating the ...
Mark Stewart's user avatar
  • 1,170
0 votes
0 answers
41 views

I am trying to connect to my Oracle DB with Windows authentication, and it just doesn't seem to work - Whatever I do I keep getting "ORA-01017: invalid username/password; logon denied". I ...
hananku's user avatar
0 votes
1 answer
647 views

Trying to export schema using the following command on several Oracle instances: two 19c and one 21c $ expdp mySchema/myPwd@ORCL Adding CONTENT=ALL or SCHEMA=mySchema or SCHEMA=MYSCHEMA or DUMPFILE=...
Vy8's user avatar
  • 1
1 vote
0 answers
58 views

I installed OracleDB(XE - free version) and I tried to use it in Java. I have this code: static final String DB_URL = "jdbc:oracle:thin:@localhost:1521/XE"; static final String ...
Bogdan Floareș's user avatar
0 votes
0 answers
188 views

1 I have installed Oracle Database 21c Enterprise Edition on Oracle windows 10 I am now trying to install Apex 22.2 . Got to the chapter "5.4.2.3 Running apxchpwd.sql" to set the instance ...
Prabhali Pawar's user avatar
0 votes
1 answer
2k views

I installed Oracle XE 21C on an old laptop running Oracle Linux 8.6. I followed the official documentation without getting any errors. I am trying to set the lsnrctl to the one located in /opt/oracle/...
Smooth Researcher's user avatar
1 vote
1 answer
4k views

In my Windows Oracle 21c XE installation I have the product installed under: C:\Oracle\product\21c Below that there is: dbhomeXE which contains the bin directory and also network. However, I also ...
rghome's user avatar
  • 143
2 votes
1 answer
1k views

In Oracle 21c, it looks like we can return a resultset as JSON text: SELECT json_object(*) from dual; result: {"DUMMY":"X"} That works in db<>fiddle: Question: Is there a ...
User1974's user avatar
  • 1,527