Questions tagged [oracle-21c]
Oracle database version 21c. Please also tag [oracle] for search purposes.
18 questions
0 votes
0 answers
18 views
How can I blob column values to files?
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 ...
0 votes
1 answer
394 views
Oracle alert.log "Thread 1 cannot allocate new log" on AWS RDS
I migrated from an on-premise Oracle XE to Amazon RDS. It's running on a T3.medium server with gp3 storage (200 GB/12000 IOPS). Almost every fifth minute the alert.log says like this: "Thread 1 ...
0 votes
1 answer
80 views
Invoking DBMS_RESOURCE_MANAGER.CALIBRATE_IO in a PDB failing
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 ...
0 votes
0 answers
162 views
How to manage ORA$_ATSK_AUTOSTS
There are 2 pluggable db's in the same container db running on Oracle 21c SE2 21.0.0.0.0 One pdb runs ORA$_ATSK_AUTOSTS every 15 minutes and it runs for less than a minute, seen from ...
0 votes
0 answers
44 views
Cannot perform Windows authentication with Oracle DB
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 ...
0 votes
0 answers
103 views
ora-12715 - Oracle GoldaneGate can not connect to database
I install Oracle 21c database and Oracle GoldaneGate 21.3 on Windows server, I can connect to my PDB using sqlplus and SqlDeveloper from another pc, but when try to dblogin from GGSCI get error this ...
0 votes
1 answer
649 views
Oracle 19c and 21c expdp exports dumpfile of 308kb without any content
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=...
0 votes
0 answers
170 views
Oracle Database Error - ORA-01578: ORACLE data block corrupted (file # 17, block # 955795)
I have a big table with more than one hundred million records, it has this schema. schema of the table: CREATE TABLE USER_B.BIG_TABLE ( field1 NUMBER (10), field2 NUMBER(19,0), field3 ...
1 vote
0 answers
58 views
Possible explanation for why "SELECT" query executed from JDBC returning just the first row in the table
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 ...
2 votes
1 answer
1k views
How to know how much memory is used by each DB user in the cache buffer?
Using this query: SELECT A.CACHE_BUFFER_TOTAL, B.CACHE_BUFFER_USED, A.CACHE_BUFFER_TOTAL - B.CACHE_BUFFER_USED AS CACHE_BUFFER_FREE FROM (SELECT BYTES / 1024 / 1024 ...
0 votes
0 answers
188 views
What’s wrong with provided apex instance administrator password
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 ...
0 votes
1 answer
994 views
Connect to remote Oracle database from local SQL Developer client
I installed Oracle Linux 21c on the remote machine, tested it in Linux shell, and it worked as expected (I can query the testing table I created). But I am stuck when trying to connect to the database ...
0 votes
1 answer
2k views
Set lsnrctl on Oracle XE 21C to listener.ora in file
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/...
0 votes
1 answer
73 views
Oracle CACHE and STORAGE IN ROW behaviour
We have a Java Spring boot application that writes 20 million plus rows in a table with 2 blob columns in a batched manner into an Oracle 21c DB. We are using JDBC batch insert for fast inserts. ...
1 vote
1 answer
4k views
On Oracle 21c XE, what should ORACLE_HOME and TNS_ADMIN be set to?
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 ...