top of page

AnalyzeOra
An Insight into the Oracle Tech
ORA-01578 / ORA-01110: data file 1: SYSTEM tablespace got corrupted.
Lost or corrupted SYSTEM tablespace datafile compels every DBA to be on high alert. SCENARIO - 1 : Follow when the below conditions are...
5 min read
160
0
Datapatch failed because SDO became invalid and PLS-00905: object MDSYS.SDO_UTIL is invalid reported
As I was running DATAPATCH after applying the Jul23 Oracle DB patches, it got failed saying the the SDO component became invalid. Patch...
3 min read
111
0
Jul 23 recommended patches for Oracle Database 19c Enterprise Edition, Release 19.19.0.0.0.
Here is a list of recommended patches for users on Oracle Database 19c Enterprise Edition, Release 19.19.0.0.0....
1 min read
74
0
Can the Explain Plan of an SQL Query be accurate in Oracle Database
I have created a table "CUSTOMERS" with 1 million rows and an ID column as a primary key. SQL> SELECT COUNT(*) FROM CUSTOMERS; COUNT(*)...
2 min read
27
0
Oracle Flashback Table Demo using SCN
Oracle Flashback query feature enables you to rewind the data of one or more tables prior to time with some limitations in length. This...
1 min read
29
0
How to create a Global Temporary Table(GTT) in Oracle Database 19c
What is the Global Temporary table (GTT)? As the name suggests, GTTs are temporary tables that hold data only for the lifetime of your...
1 min read
70
0
Trace down the IPs connected to the Oracle Database 19c on the Linux server
I am running an Oracle Database 19c on oracle linux 7.9. Now I need to check the IPs connected to my database on the listener port. We...
1 min read
48
0
Is OMF enabled in your Oracle Database 12c and 19c
col name format a25 col value format a10 select a.ksppinm name, b.kspftctxvl value, b.kspftctxdf isdefault, decode(bitand(b.kspftctxvf,7)...
1 min read
32
0
Add Temp files in Oracle Database 12c,19c
To add a temp file to the TEMP tablespace in Oracle Database, Query to find current tempfile details col file_name for a72 col...
1 min read
99
0
Query to know the Primary keys of all tables in a Schema in Oracle Database
How query all primary keys of all tables owned by a schema_name - Just replace 'P' with 'F' to know foreign key select...
1 min read
25
0
bottom of page