Share this
Expand your Oracle Tuning Tools with dbms_utility.expand_sql_text
by Jared Still on Jan 12, 2024 1:21:37 PM
Expand an Oracle View to Full SELECT Text
When working on a view composed of SELECT statements on other views, it can be difficult to know what the complete SQL text looks like.
Most of the time, seeing the entire expanded SQL may not be necessary. However, When trying to improve a SQL statement's performance, the expanded SQL can be very useful.
The following demo was created on an Oracle 19.12 database.
The client is Linux. Some of these scripts may require adjustments for the differences in how lines are terminated if the scripts are run on Windows.
Several of the tables and views used in this article are rather contrived and do not fit any good design pattern. They are simply for demonstration purposes.
dbms_utility.expand_sql_text
The DBMS_UTILITY package has a procedure EXPAND_SQL_TEXT. As per the documentation:
This procedure recursively replaces any view references in the input SQL query with the corresponding view subquery.
I will use dbms_utility.expand_sql_text to expand some simple SQL statements into the full SQL that is used by Oracle.
There are so many features in Oracle it is quite easy to overlook some useful features. This may be the case for you, as it was for me, as the expand_sql_text procedure was added to Oracle long ago, in version 12.1.
The scripts used in this blog may be found at oracle-dbms-utility-expand-sql
create-tables.sql
This script just selects from the ALL_OBJECTS view to create several smaller test tables.
The test tables each contain some part of the columns found in the ALL_OBJECTS view and together make up a subset of that view.
These are the 'contrived' tables referred to previously.
@@ create-tables
Table dropped.
Table dropped.
...
TEST_OBJECTS
Table created.
XP_OBJECT_ID
Table created.
XP_OBJECT_NAMES
Table created.
XP_OBJECT_DATES
Table created.
XP_OBJECT_TYPES
Table created.
XP_OBJECT_STATUS
Table created.
Commit complete.
create-views.sql
Now, create some views on the new tables, as well as some views on views.
Each of the tables has a view select * from TABLE_NAME. The other views JOIN these views.
@@ create-views
XP_OBJECT_ID_V
View created.
XP_OBJECT_DATES_V
View created.
XP_OBJECT_NAMES_V
View created.
XP_OBJECT_TYPES_V
View created.
XP_OBJECT_STATUS_V
View created.
XP_OBJECT_ID_TYPE_V
View created.
XP_OBJECT_ID_NAME_V
View created.
XP_OBJECT_ID_STATUS_V
View created.
XP_OBJECT_ID_DATES_V
View created.
XP_OBJECTS_V
View created.
Permissions
The simplest way to run these scripts is from an account that has DBA privileges otherwise, it may fail.
While I could ferret out the necessary privileges, that is not the focus of this article, and so determining the exact privileges required is left as an exercise for the reader.
From OH/rdbms/admin/dbmsutil.sql script:
- ORA-24256 will be raised if the current user does not have SELECT
privileges on all the views and tables recursively referenced in the
input sql text. It will also be raised if the user does not have
EXECUTE privileges on all functions and types referenced from within
views that are expanded as well as any other reason a valid query could
not be expanded. The ORA-24256's error message text contains information
regarding the particular restriction that wasn't satisfied.
- ORA-24251 will be raised if the input_sql text is not a select statement.
- ORA-00900 will be raised if the input is not valid.
- ORA-29477 will be raised if the input lob size exceeds the maximum size
of 4GB -1.
get-view.sql
Now for a demo of dbms_utility.expand_sql_text
Here is a simple demonstration:
@get-view 'select * from dual'
SELECT "A1"."DUMMY" "DUMMY" FROM "SYS"."DUAL" "A1"
SQL#
Now for one of the views created previously:
@get-view 'select * from XP_OBJECT_ID_V'
SELECT "A1"."OWNER" "OWNER","A1"."OBJECT_ID" "OBJECT_ID" FROM (SELECT "A2"."OWNER" "OWNER","A2"."OBJECT_ID" "OBJECT_ID" FROM "JKSTILL"."XP_OBJECT_ID" "A2") "A1"
SQL#
So far, so good. That view was simply a selection on a single table.
Let's see what happens when 1+ views are referenced in the SQL:
@get-view 'select * from XP_OBJECT_ID_TYPE_V'
SELECT "A1"."OWNER" "OWNER","A1"."OBJECT_ID" "OBJECT_ID","A1"."OBJECT_TYPE" "OBJECT_TYPE" FROM (SELECT "A2"."QCSJ_C000000000400000_0" "OWNER","A2"."QCSJ_C000000000400002_1" "OBJECT_ID","A2"."OBJECT_TYPE_4" "OBJECT_TYPE" FROM (SELECT "A4"."OWNER" "QCSJ_C000000000400000_0","A4"."OBJECT_ID" "QCSJ_C000000000400002_1","A3"."OWNER" "QCSJ_C000000000400001","A3"."OBJECT_ID" "QCSJ_C000000000400003","A3"."OBJECT_TYPE" "OBJECT_TYPE_4" FROM (SELECT "A5"."OWNER" "OWNER","A5"."OBJECT_ID" "OBJECT_ID" FROM "JKSTILL"."XP_OBJECT_ID" "A5") "A4", (SELECT "A6"."OWNER" "OWNER","A6"."OBJECT_ID" "OBJECT_ID","A6"."OBJECT_TYPE" "OBJECT_TYPE" FROM "JKSTILL"."XP_OBJECT_TYPES" "A6") "A3" WHERE "A3"."OBJECT_ID"="A4"."OBJECT_ID") "A2") "A1"
#SQL
OK, that is rather difficult to read.
From now on, the Shell script get-view.sh will be used, which logs in to the database, gets the expanded SQL text and runs it through a formatter.
Note: you will need to change the credentials in the script if you run this yourself.
Let's try it:
$ ./get-view.sh 'select * from XP_OBJECT_ID_TYPE_V'
SELECT
A1.OWNER OWNER
,A1.OBJECT_ID OBJECT_ID
,A1.OBJECT_TYPE OBJECT_TYPE
FROM
(
SELECT
A2.QCSJ_C000000000400000_0 OWNER
,A2.QCSJ_C000000000400002_1 OBJECT_ID
,A2.OBJECT_TYPE_4 OBJECT_TYPE
FROM
(
SELECT
A4.OWNER QCSJ_C000000000400000_0
,A4.OBJECT_ID QCSJ_C000000000400002_1
,A3.OWNER QCSJ_C000000000400001
,A3.OBJECT_ID QCSJ_C000000000400003
,A3.OBJECT_TYPE OBJECT_TYPE_4
FROM
(
SELECT
A5.OWNER OWNER
,A5.OBJECT_ID OBJECT_ID
FROM JKSTILL.XP_OBJECT_ID A5
) A4,
(
SELECT
A6.OWNER OWNER
,A6.OBJECT_ID OBJECT_ID
,A6.OBJECT_TYPE OBJECT_TYPE
FROM JKSTILL.XP_OBJECT_TYPES A6
) A3
WHERE A3.OBJECT_ID=A4.OBJECT_ID
) A2
) A1
That is much easier to read.
The formatter format-sql.pl is not a full-functioned formatter, but it works for this blog's scripts.
When 1+ objects (including tables, not just views) are referenced in the SQL, Oracle may create unique column names for a number of referenced columns:
For example:
$ cat > t1.sql
select
o.owner
, o.object_id
, s.status
, s.temporary
, s.generated
from xp_object_id o
join xp_object_status s
on s.object_id = o.object_id
^D
$ ./get-view.sh "$(cat t1.sql | tr '\n' ' ')" | expand -t3
SELECT
A1.QCSJ_C000000000300000_0 OWNER
,A1.QCSJ_C000000000300002_1 OBJECT_ID
,A1.STATUS_4 STATUS
,A1.TEMPORARY_5 TEMPORARY
,A1.GENERATED_6 GENERATED
FROM
(
SELECT
A3.OWNER QCSJ_C000000000300000_0
,A3.OBJECT_ID QCSJ_C000000000300002_1
,A2.OWNER QCSJ_C000000000300001
,A2.OBJECT_ID QCSJ_C000000000300003
,A2.STATUS STATUS_4
,A2.TEMPORARY TEMPORARY_5
,A2.GENERATED GENERATED_6
FROM JKSTILL.XP_OBJECT_ID A3,JKSTILL.XP_OBJECT_STATUS A2 WHERE A2.OBJECT_ID=A3.OBJECT_ID
) A1
Why would Oracle create these column aliases? Consider the following SQL snippet from the previous output:
SELECT
A4.OWNER QCSJ_C000000000400000_0
,A4.OBJECT_ID QCSJ_C000000000400002_1
,A3.OWNER QCSJ_C000000000400001
,A3.OBJECT_ID QCSJ_C000000000400003
,A3.OBJECT_TYPE OBJECT_TYPE_4
The column OBJECT_NAME appears twice in each of the A3 and A4 inline views. The unique names are used to disambiguate the column names.
There appears to be some threshold at which Oracle decides to create aliases for all column names rather than just those that require it.
The following SQL is a query on two of the tables in the OE Order Entry schema that is included with Oracle Demos.
create or replace view expand_sql_test
as
select o.order_id, o.order_date,o.customer_id
, i.line_item_id, i.product_id
from oe.orders o
join oe.order_items i on i.order_id = o.order_id
order by o.order_id, i.line_item_id
The expanded view:
$ ./get-view.sh 'select * from oe.expand_sql_test
SELECT
A1.ORDER_ID ORDER_ID
,A1.ORDER_DATE ORDER_DATE
,A1.CUSTOMER_ID CUSTOMER_ID
,A1.LINE_ITEM_ID LINE_ITEM_ID
,A1.PRODUCT_ID PRODUCT_ID
FROM
(
SELECT
A2.QCSJ_C000000000400000_0 ORDER_ID
,A2.ORDER_DATE_1 ORDER_DATE
,A2.CUSTOMER_ID_2 CUSTOMER_ID
,A2.LINE_ITEM_ID_4 LINE_ITEM_ID
,A2.PRODUCT_ID_5 PRODUCT_ID
FROM
(
SELECT
A4.ORDER_ID QCSJ_C000000000400000_0
,A4.ORDER_DATE ORDER_DATE_1
,A4.CUSTOMER_ID CUSTOMER_ID_2
,A3.ORDER_ID QCSJ_C000000000400001
,A3.LINE_ITEM_ID LINE_ITEM_ID_4
,A3.PRODUCT_ID PRODUCT_ID_5
FROM OE.ORDERS A4,OE.ORDER_ITEMS A3 WHERE A3.ORDER_ID=A4.ORDER_ID
) A2
ORDER
BY
A2.QCSJ_C000000000400000_0,A2.LINE_ITEM_ID_4
) A1
The only duplicate column name in this case was ORDER_ID.
This is also the only column for which dbms_utility.expand_sql_text created an alias.
If a copy is made of the ORDER_ITEMS table, and the ORDER_ID column is renamed, dbms_utility.expand_sqltext will not create an alias for any columns.
create table order_items_test
as
select * from order_items
/
alter table order_items_test rename column order_id to items_order_id ;
create or replace view expand_sql_test_2
as
select o.order_id, o.order_date,o.customer_id
, i.line_item_id, i.product_id
from oe.orders o
join oe.order_items_test i on i.items_order_id = o.order_id
order by o.order_id, i.line_item_id
/
Expand the SQL Text
$ ./get-view.sh 'select * from oe.expand_sql_test_2'
SELECT
A1.ORDER_ID ORDER_ID
,A1.ORDER_DATE ORDER_DATE
,A1.CUSTOMER_ID CUSTOMER_ID
,A1.LINE_ITEM_ID LINE_ITEM_ID
,A1.PRODUCT_ID PRODUCT_ID
FROM
(
SELECT
A2.ORDER_ID_0 ORDER_ID
,A2.ORDER_DATE_1 ORDER_DATE
,A2.CUSTOMER_ID_2 CUSTOMER_ID
,A2.LINE_ITEM_ID_4 LINE_ITEM_ID
,A2.PRODUCT_ID_5 PRODUCT_ID
FROM
(
SELECT
A4.ORDER_ID ORDER_ID_0
,A4.ORDER_DATE ORDER_DATE_1
,A4.CUSTOMER_ID CUSTOMER_ID_2
,A3.ITEMS_ORDER_ID ITEMS_ORDER_ID
,A3.LINE_ITEM_ID LINE_ITEM_ID_4
,A3.PRODUCT_ID PRODUCT_ID_5
FROM OE.ORDERS A4,OE.ORDER_ITEMS_TEST A3 WHERE A3.ITEMS_ORDER_ID=A4.ORDER_ID
) A2
ORDER
BY
A2.ORDER_ID_0,A2.LINE_ITEM_ID_4
) A1
The Full SQL Text
Getting back now to the original test tables and views, there is one view that joins all other views: XP_OBJECTS_V. Let's see what the expanded SQL looks like:
$ ./get-view.sh "select * from xp_objects_v"
SELECT
A1.OWNER OWNER
,A1.OBJECT_ID OBJECT_ID
,A1.OBJECT_TYPE OBJECT_TYPE
,A1.OBJECT_NAME OBJECT_NAME
,A1.STATUS STATUS
,A1.CREATED CREATED
,A1.LAST_DDL_TIME LAST_DDL_TIME
FROM
(
SELECT
A2.QCSJ_C000000000400000_0 OWNER
,A2.QCSJ_C000000000400002_1 OBJECT_ID
,A2.OBJECT_TYPE_2 OBJECT_TYPE
,A2.OBJECT_NAME_5 OBJECT_NAME
,A2.STATUS_8 STATUS
,A2.CREATED_11 CREATED
,A2.LAST_DDL_TIME_12 LAST_DDL_TIME
FROM
(
SELECT
A4.QCSJ_C000000000400000_0 QCSJ_C000000000400000_0
,A4.QCSJ_C000000000400002_1 QCSJ_C000000000400002_1
,A4.OBJECT_TYPE_2 OBJECT_TYPE_2
,A4.QCSJ_C000000000400001_3 QCSJ_C000000000400001
,A4.QCSJ_C000000000400003_4 QCSJ_C000000000400003
,A4.OBJECT_NAME_5 OBJECT_NAME_5
,A4.OWNER_6 QCSJ_C000000000800000
,A4.OBJECT_ID_7 QCSJ_C000000000800002
,A4.STATUS_8 STATUS_8
,A3.OWNER QCSJ_C000000000800001
,A3.OBJECT_ID QCSJ_C000000000800003
,A3.CREATED CREATED_11
,A3.LAST_DDL_TIME LAST_DDL_TIME_12
FROM
(
SELECT
A6.QCSJ_C000000000400000_0 QCSJ_C000000000400000_0
,A6.QCSJ_C000000000400002_1 QCSJ_C000000000400002_1
,A6.OBJECT_TYPE_2 OBJECT_TYPE_2
,A6.QCSJ_C000000000400001_3 QCSJ_C000000000400001_3
,A6.QCSJ_C000000000400003_4 QCSJ_C000000000400003_4
,A6.OBJECT_NAME_5 OBJECT_NAME_5
,A5.OWNER OWNER_6
,A5.OBJECT_ID OBJECT_ID_7
,A5.STATUS STATUS_8
FROM
(
SELECT
A8.OWNER QCSJ_C000000000400000_0
,A8.OBJECT_ID QCSJ_C000000000400002_1
,A8.OBJECT_TYPE OBJECT_TYPE_2
,A7.OWNER QCSJ_C000000000400001_3
,A7.OBJECT_ID QCSJ_C000000000400003_4
,A7.OBJECT_NAME OBJECT_NAME_5
FROM
(
SELECT
A9.QCSJ_C000000002600000_0 OWNER
,A9.QCSJ_C000000002600002_1 OBJECT_ID
,A9.OBJECT_TYPE_4 OBJECT_TYPE
FROM
(
SELECT
A11.OWNER QCSJ_C000000002600000_0
,A11.OBJECT_ID QCSJ_C000000002600002_1
,A10.OWNER QCSJ_C000000002600001
,A10.OBJECT_ID QCSJ_C000000002600003
,A10.OBJECT_TYPE OBJECT_TYPE_4
FROM
(
SELECT
A12.OWNER OWNER
,A12.OBJECT_ID OBJECT_ID
FROM JKSTILL.XP_OBJECT_ID A12
) A11,
(
SELECT
A13.OWNER OWNER
,A13.OBJECT_ID OBJECT_ID
,A13.OBJECT_TYPE OBJECT_TYPE
FROM JKSTILL.XP_OBJECT_TYPES A13
) A10
WHERE A10.OBJECT_ID=A11.OBJECT_ID
) A9
) A8,
(
SELECT
A14.QCSJ_C000000002100000_0 OWNER
,A14.QCSJ_C000000002100002_1 OBJECT_ID
,A14.OBJECT_NAME_4 OBJECT_NAME
FROM
(
SELECT
A16.OWNER QCSJ_C000000002100000_0
,A16.OBJECT_ID QCSJ_C000000002100002_1
,A15.OWNER QCSJ_C000000002100001
,A15.OBJECT_ID QCSJ_C000000002100003
,A15.OBJECT_NAME OBJECT_NAME_4
FROM
(
SELECT
A17.OWNER OWNER
,A17.OBJECT_ID OBJECT_ID
FROM JKSTILL.XP_OBJECT_ID A17
) A16,
(
SELECT
A18.OWNER OWNER
,A18.OBJECT_ID OBJECT_ID
,A18.OBJECT_NAME OBJECT_NAME
FROM JKSTILL.XP_OBJECT_NAMES A18
) A15
WHERE A15.OBJECT_ID=A16.OBJECT_ID
) A14
) A7
WHERE A7.OBJECT_ID=A8.OBJECT_ID
) A6,
(
SELECT
A19.QCSJ_C000000001600000_0 OWNER
,A19.QCSJ_C000000001600002_1 OBJECT_ID
,A19.STATUS_4 STATUS
,A19.TEMPORARY_5 TEMPORARY
,A19.GENERATED_6 GENERATED
FROM
(
SELECT
A21.OWNER QCSJ_C000000001600000_0
,A21.OBJECT_ID QCSJ_C000000001600002_1
,A20.OWNER QCSJ_C000000001600001
,A20.OBJECT_ID QCSJ_C000000001600003
,A20.STATUS STATUS_4
,A20.TEMPORARY TEMPORARY_5
,A20.GENERATED GENERATED_6
FROM
(
SELECT
A22.OWNER OWNER
,A22.OBJECT_ID OBJECT_ID
FROM JKSTILL.XP_OBJECT_ID A22
) A21,
(
SELECT
A23.OWNER OWNER
,A23.OBJECT_ID OBJECT_ID
,A23.STATUS STATUS
,A23.TEMPORARY TEMPORARY
,A23.GENERATED GENERATED
FROM JKSTILL.XP_OBJECT_STATUS A23
) A20
WHERE A20.OBJECT_ID=A21.OBJECT_ID
) A19
) A5
WHERE A5.OBJECT_ID=A6.QCSJ_C000000000400002_1
) A4,
(
SELECT
A24.QCSJ_C000000001100000_0 OWNER
,A24.QCSJ_C000000001100002_1 OBJECT_ID
,A24.CREATED_4 CREATED
,A24.LAST_DDL_TIME_5 LAST_DDL_TIME
,A24.TIMESTAMP_6 TIMESTAMP
FROM
(
SELECT
A26.OWNER QCSJ_C000000001100000_0
,A26.OBJECT_ID QCSJ_C000000001100002_1
,A25.OWNER QCSJ_C000000001100001
,A25.OBJECT_ID QCSJ_C000000001100003
,A25.CREATED CREATED_4
,A25.LAST_DDL_TIME LAST_DDL_TIME_5
,A25.TIMESTAMP TIMESTAMP_6
FROM
(
SELECT
A27.OWNER OWNER
,A27.OBJECT_ID OBJECT_ID
FROM JKSTILL.XP_OBJECT_ID A27
) A26,
(
SELECT
A28.OWNER OWNER
,A28.OBJECT_ID OBJECT_ID
,A28.CREATED CREATED
,A28.LAST_DDL_TIME LAST_DDL_TIME
,A28.TIMESTAMP TIMESTAMP
FROM JKSTILL.XP_OBJECT_DATES A28
) A25
WHERE A25.OBJECT_ID=A26.OBJECT_ID
) A24
) A3
WHERE A3.OBJECT_ID=A4.QCSJ_C000000000400002_1
) A2
) A1
That simple SELECT statement expanded into 196 lines of SQL!
You may have also noticed that nearly all of the columns referenced in the inline views have been aliased to a different name.
Now, imagine that you have been given the task of improving the performance of select * from xp_objects_v.
On the surface, it looks simple. But when you start digging into it, say by getting an execution plan or a SQL trace, you realize the SQL is much more complex than it first appeared.
For example, this query: select /*+ gather_plan_statistics */ count(*) from xp_objects_v where owner = 'SCOTT', has the following execution plan:

A TABLE ACCESS FULL on each table in the view will not provide optimal performance for this query.
It is also quite obvious that this is a view. Checking on the view definition, the following SQL is shown:
1 select text
2 from all_views
3* where view_name like 'XP_OBJECTS_V'
/
TEXT
--------------------------------------------------------------------------------
select
t.owner
, t.object_id
, t.object_type
, n.object_name
, s.status
, d.created
, d.last_ddl_time
from xp_object_id_type_v t
join xp_object_id_name_v n on n.object_id = t.object_id
join xp_object_id_status_v s on s.object_id = t.object_id
join xp_object_id_dates_v d on d.object_id = t.object_id
1 row selected.
As you now know, that initial SQL statement does not tell the whole story, as the full SQL query is 196 lines of SQL.
While the column aliases created by dbms_utility.expand_sql_text may make the SQL somewhat difficult to read, that inconvenience is offset by the knowledge gained about the true nature of what at first appeared to be a simple SQL statement.
The expanded SQL will help you better understand the SQL execution plan, as almost nothing in the plan will correlate to select * from xp_objects_v;
The expanded SQL can also be executed directly from SQL*Plus. Having the full SQL does simplify the tuning effort somewhat.
Here is a link to documentation for full details: dbms_utility.expand_sql_text.
The next time you need to work on tuning the performance of a view, give dbms_utility.expand_sql_text a try to see what you are really working with.
Share this
- Technical Track (816)
- Oracle (488)
- Database (229)
- MySQL (144)
- Cloud (133)
- Microsoft SQL Server (124)
- Open Source (84)
- Google Cloud (82)
- Microsoft Azure (67)
- Amazon Web Services (AWS) (63)
- Big Data (50)
- Cassandra (44)
- Google Cloud Platform (44)
- DevOps (38)
- Linux (28)
- Pythian (27)
- PostgreSQL (26)
- Podcasts (25)
- Site Reliability Engineering (23)
- Performance (22)
- Docker (21)
- Oracle E-Business Suite (21)
- DBA (18)
- Oracle Cloud Infrastructure (OCI) (18)
- MongoDB (17)
- Security (17)
- Hadoop (16)
- BigQuery (15)
- Amazon RDS (14)
- Automation (14)
- Exadata (14)
- Oracleebs (14)
- Snowflake (14)
- Ansible (13)
- Oracle Database (13)
- Oracle Exadata (13)
- ASM (12)
- Data (12)
- LLM (12)
- Artificial Intelligence (AI) (11)
- GenAI (11)
- Kubernetes (11)
- Machine Learning (11)
- Advanced Analytics (10)
- Datascape Podcast (10)
- Oracle Applications (10)
- Replication (10)
- Authentication, SSO and MFA (8)
- ChatGPT (8)
- Cloud Migration (8)
- Infrastructure (8)
- Monitoring (8)
- Percona (8)
- Analytics (7)
- Apache (7)
- Apache Cassandra (7)
- Data Governance (7)
- High Availability (7)
- Mariadb (7)
- Microsoft Azure SQL Database (7)
- Myrocks (7)
- Oracle EBS (7)
- Python (7)
- Rman (7)
- SAP (7)
- Series (7)
- AWR (6)
- Airflow (6)
- Apache Beam (6)
- Data Guard (6)
- Innodb (6)
- Migration (6)
- Oracle Enterprise Manager (OEM) (6)
- Orchestrator (6)
- RocksDB (6)
- Azure Synapse Analytics (5)
- Covid-19 (5)
- Data Enablement (5)
- Disaster Recovery (5)
- Microsoft (5)
- Performance Tuning (5)
- Scala (5)
- Serverless (5)
- Cloud Security (4)
- Cloud Spanner (4)
- CockroachDB (4)
- Data Management (4)
- Data Pipeline (4)
- Data Security (4)
- Data Strategy (4)
- Data Visualization (4)
- Databases (4)
- Dataflow (4)
- Generative AI (4)
- Google (4)
- Google BigQuery (4)
- Oracle Autonomous Database (Adb) (4)
- Oracle Cloud (4)
- Oracle Enterprise Manager (4)
- Redhat (4)
- Ssl (4)
- Windows (4)
- Xtrabackup (4)
- Amazon Relational Database Service (Rds) (3)
- Apex (3)
- Cloud Database (3)
- Cloud FinOps (3)
- Data Analytics (3)
- Data Migrations (3)
- Database Migration (3)
- Digital Transformation (3)
- ERP (3)
- Google Chrome (3)
- Google Cloud Sql (3)
- Google Workspace (3)
- Heterogeneous Database Migration (3)
- Oracle Live Sql (3)
- Oracle Rac (3)
- Perl (3)
- Power Bi (3)
- Prometheus (3)
- Remote Teams (3)
- Slob (3)
- Tensorflow (3)
- Terraform (3)
- Amazon Data Migration Service (2)
- Amazon Ec2 (2)
- Anisble (2)
- Apache Flink (2)
- Apache Kafka (2)
- Apexexport (2)
- Ashdump (2)
- Aurora (2)
- Azure Data Factory (2)
- Cloud Armor (2)
- Cloud Data Fusion (2)
- Cloud Hosting (2)
- Cloud Infrastructure (2)
- Cloud Shell (2)
- Cloud Sql (2)
- Conferences (2)
- Cosmos Db (2)
- Cosmosdb (2)
- Cost Management (2)
- Data Discovery (2)
- Data Integration (2)
- Data Quality (2)
- Data Streaming (2)
- Database Administrator (2)
- Database Consulting (2)
- Database Monitoring (2)
- Database Performance (2)
- Database Troubleshooting (2)
- Dataguard (2)
- Dataops (2)
- Enterprise Data Platform (EDP) (2)
- Events (2)
- Fusion Middleware (2)
- Gemini (2)
- Graphite (2)
- Infrastructure As Code (2)
- Innodb Cluster (2)
- Innodb File Structure (2)
- Innodb Group Replication (2)
- Liquibase (2)
- NLP (2)
- Nosql (2)
- Oracle Data Guard (2)
- Oracle Datase (2)
- Oracle Flashback (2)
- Oracle Forms (2)
- Oracle Installation (2)
- Oracle Io Testing (2)
- Podcast (2)
- Rdbms (2)
- Redshift (2)
- Remote DBA (2)
- Remote Sre (2)
- S3 (2)
- Single Sign-On (2)
- Webinars (2)
- X5 (2)
- AI (1)
- Actifio (1)
- Adop (1)
- Advanced Data Services (1)
- Afd (1)
- Alloydb (1)
- Amazon (1)
- Amazon Aurora Backtrack (1)
- Amazon Efs (1)
- Amazon Redshift (1)
- Amazon S3 (1)
- Amazon Sagemaker (1)
- Amazon Vpc Flow Logs (1)
- Analysis (1)
- Analytical Models (1)
- Anthos (1)
- Application Migration (1)
- Ash (1)
- Asmlib (1)
- Atp (1)
- Autonomous (1)
- Awr Data Mining (1)
- Awr Mining (1)
- Azure Data Lake (1)
- Azure Data Lake Analytics (1)
- Azure Data Lake Store (1)
- Azure Data Migration Service (1)
- Azure OpenAI (1)
- Azure Sql Data Warehouse (1)
- Batches In Cassandra (1)
- Business Insights (1)
- Business Intelligence (1)
- Chown (1)
- Chrome Security (1)
- Cloud Browser (1)
- Cloud Build (1)
- Cloud Consulting (1)
- Cloud Cost Optimization (1)
- Cloud Data Warehouse (1)
- Cloud Database Management (1)
- Cloud Dataproc (1)
- Cloud Foundry (1)
- Cloud Networking (1)
- Cloud SQL Replica (1)
- Cloud Scheduler (1)
- Cloud Services (1)
- Cloud Strategies (1)
- Compliance (1)
- Conversational AI (1)
- Cyber Security (1)
- Data Analysis (1)
- Data Analytics Platform (1)
- Data Box (1)
- Data Classification (1)
- Data Cleansing (1)
- Data Encryption (1)
- Data Engineering (1)
- Data Estate (1)
- Data Insights (1)
- Data Integrity (1)
- Data Leader (1)
- Data Lifecycle Management (1)
- Data Lineage (1)
- Data Masking (1)
- Data Mesh (1)
- Data Migration (1)
- Data Migration Assistant (1)
- Data Migration Service (1)
- Data Mining (1)
- Data Monetization (1)
- Data Policy (1)
- Data Profiling (1)
- Data Protection (1)
- Data Retention (1)
- Data Safe (1)
- Data Sheets (1)
- Data Summit (1)
- Data Vault (1)
- Data Warehouse (1)
- Database Consultant (1)
- Database Link (1)
- Database Management (1)
- Database Migrations (1)
- Database Modernization (1)
- Database Provisioning (1)
- Database Provisioning Failed (1)
- Database Replication (1)
- Database Schemas (1)
- Database Upgrade (1)
- Databricks (1)
- Datascape 59 (1)
- DeepSeek (1)
- Docker-Composer (1)
- Duet AI (1)
- Edp (1)
- Etl (1)
- Gcp Compute (1)
- Gcp-Spanner (1)
- Global Analytics (1)
- Google Analytics (1)
- Google Cloud Architecture Framework (1)
- Google Cloud Data Services (1)
- Google Cloud Partner (1)
- Google Cloud Spanner (1)
- Google Cloud VMware Engine (1)
- Google Compute Engine (1)
- Google Dataflow (1)
- Google Datalab (1)
- Google Grab And Go (1)
- Graph Algorithms (1)
- Graph Inferences (1)
- Graph Theory (1)
- GraphQL (1)
- Health Check (1)
- Healthcheck (1)
- Information (1)
- Infrastructure As A Code (1)
- Innobackupex (1)
- Innodb Concurrency (1)
- Innodb Flush Method (1)
- It Industry (1)
- Kubeflow (1)
- LMSYS Chatbot Arena (1)
- Linux Host Monitoring (1)
- Linux Storage Appliance (1)
- Looker (1)
- MMLU (1)
- Managed Services (1)
- Migrate (1)
- Neo4J (1)
- Newsroom (1)
- Nifi (1)
- OPEX (1)
- Odbcs (1)
- Odbs (1)
- On-Premises (1)
- Open Source Database (1)
- Ora-01852 (1)
- Ora-7445 (1)
- Oracle Cursor (1)
- Oracle Database@Google Cloud (1)
- Oracle Exadata Smart Scan (1)
- Oracle Licensing (1)
- Oracle Linux Virtualization Manager (1)
- Oracle Oda (1)
- Oracle Openworld (1)
- Oracle Parallelism (1)
- Oracle RMAN (1)
- Oracle Rdbms (1)
- Oracle Real Application Clusters (1)
- Oracle Reports (1)
- Oracle Security (1)
- Perfomrance (1)
- Performance Schema (1)
- Policy (1)
- Prompt Engineering (1)
- Public Cloud (1)
- Pythian News (1)
- Rdb (1)
- Replication Error (1)
- Retail (1)
- SAP HANA Cloud (1)
- Securing Sql Server (1)
- Serverless Computing (1)
- Sso (1)
- Tenserflow (1)
- Teradata (1)
- Vertex AI (1)
- Videos (1)
- Workspace Security (1)
- Xbstream (1)
- August 2025 (1)
- July 2025 (3)
- June 2025 (1)
- May 2025 (3)
- March 2025 (2)
- February 2025 (1)
- January 2025 (2)
- December 2024 (1)
- October 2024 (2)
- September 2024 (7)
- August 2024 (4)
- July 2024 (2)
- June 2024 (6)
- May 2024 (3)
- April 2024 (2)
- February 2024 (1)
- January 2024 (11)
- December 2023 (10)
- November 2023 (9)
- October 2023 (11)
- September 2023 (9)
- August 2023 (6)
- July 2023 (2)
- June 2023 (13)
- May 2023 (4)
- April 2023 (6)
- March 2023 (10)
- February 2023 (6)
- January 2023 (5)
- December 2022 (10)
- November 2022 (10)
- October 2022 (10)
- September 2022 (13)
- August 2022 (16)
- July 2022 (12)
- June 2022 (13)
- May 2022 (11)
- April 2022 (4)
- March 2022 (5)
- February 2022 (4)
- January 2022 (14)
- December 2021 (16)
- November 2021 (11)
- October 2021 (6)
- September 2021 (11)
- August 2021 (6)
- July 2021 (9)
- June 2021 (4)
- May 2021 (8)
- April 2021 (16)
- March 2021 (16)
- February 2021 (6)
- January 2021 (12)
- December 2020 (12)
- November 2020 (17)
- October 2020 (11)
- September 2020 (10)
- August 2020 (11)
- July 2020 (13)
- June 2020 (6)
- May 2020 (9)
- April 2020 (18)
- March 2020 (21)
- February 2020 (13)
- January 2020 (15)
- December 2019 (10)
- November 2019 (11)
- October 2019 (12)
- September 2019 (16)
- August 2019 (15)
- July 2019 (10)
- June 2019 (16)
- May 2019 (20)
- April 2019 (21)
- March 2019 (14)
- February 2019 (18)
- January 2019 (18)
- December 2018 (5)
- November 2018 (16)
- October 2018 (12)
- September 2018 (20)
- August 2018 (27)
- July 2018 (31)
- June 2018 (34)
- May 2018 (28)
- April 2018 (27)
- March 2018 (17)
- February 2018 (8)
- January 2018 (20)
- December 2017 (14)
- November 2017 (4)
- October 2017 (1)
- September 2017 (3)
- August 2017 (5)
- July 2017 (4)
- June 2017 (2)
- May 2017 (7)
- April 2017 (7)
- March 2017 (8)
- February 2017 (8)
- January 2017 (5)
- December 2016 (3)
- November 2016 (4)
- October 2016 (8)
- September 2016 (9)
- August 2016 (10)
- July 2016 (9)
- June 2016 (8)
- May 2016 (13)
- April 2016 (16)
- March 2016 (13)
- February 2016 (11)
- January 2016 (6)
- December 2015 (11)
- November 2015 (11)
- October 2015 (5)
- September 2015 (16)
- August 2015 (4)
- July 2015 (1)
- June 2015 (3)
- May 2015 (6)
- April 2015 (5)
- March 2015 (5)
- February 2015 (4)
- January 2015 (3)
- December 2014 (7)
- October 2014 (4)
- September 2014 (6)
- August 2014 (6)
- July 2014 (16)
- June 2014 (7)
- May 2014 (6)
- April 2014 (5)
- March 2014 (4)
- February 2014 (10)
- January 2014 (6)
- December 2013 (8)
- November 2013 (12)
- October 2013 (9)
- September 2013 (6)
- August 2013 (7)
- July 2013 (9)
- June 2013 (7)
- May 2013 (7)
- April 2013 (4)
- March 2013 (7)
- February 2013 (4)
- January 2013 (4)
- December 2012 (6)
- November 2012 (8)
- October 2012 (9)
- September 2012 (3)
- August 2012 (5)
- July 2012 (5)
- June 2012 (7)
- May 2012 (11)
- April 2012 (1)
- March 2012 (8)
- February 2012 (1)
- January 2012 (6)
- December 2011 (8)
- November 2011 (5)
- October 2011 (9)
- September 2011 (6)
- August 2011 (4)
- July 2011 (1)
- June 2011 (1)
- May 2011 (5)
- April 2011 (2)
- February 2011 (2)
- January 2011 (2)
- December 2010 (1)
- November 2010 (7)
- October 2010 (3)
- September 2010 (8)
- August 2010 (2)
- July 2010 (4)
- June 2010 (7)
- May 2010 (2)
- April 2010 (1)
- March 2010 (3)
- February 2010 (3)
- January 2010 (2)
- November 2009 (6)
- October 2009 (6)
- August 2009 (3)
- July 2009 (3)
- June 2009 (3)
- May 2009 (2)
- April 2009 (8)
- March 2009 (6)
- February 2009 (4)
- January 2009 (3)
- November 2008 (3)
- October 2008 (7)
- September 2008 (6)
- August 2008 (9)
- July 2008 (9)
- June 2008 (9)
- May 2008 (9)
- April 2008 (8)
- March 2008 (4)
- February 2008 (3)
- January 2008 (3)
- December 2007 (2)
- November 2007 (7)
- October 2007 (1)
- August 2007 (4)
- July 2007 (3)
- June 2007 (8)
- May 2007 (4)
- April 2007 (2)
- March 2007 (2)
- February 2007 (5)
- January 2007 (8)
- December 2006 (1)
- November 2006 (3)
- October 2006 (4)
- September 2006 (3)
- July 2006 (1)
- May 2006 (2)
- April 2006 (1)
- July 2005 (1)
No Comments Yet
Let us know what you think