This blog provides valuable insights and information for Oracle DBA professionals.
db_size.sql
Get link
Facebook
X
Pinterest
Email
Other Apps
-- ************************************************************************************************************
-- * Filename : db_size.sql
-- * Author : Saravanakumar K
-- * Description : This script with show all database physical file info
-- * Usage : @db_size.sql
-- * Version : v1
-- *************************************************************************************************************
set lines 200 pages 999
COL "Database Total Size" FORMAT a20
COL "Free space" FORMAT a20
COL "Used space" FORMAT a20
SELECT
name.name,round(SUM(used.bytes) / 1024 / 1024 / 1024)
|| ' GB' "Database Total Size",
round(SUM(used.bytes) / 1024 / 1024 / 1024) - round(free.p / 1024 / 1024 / 1024)
|| ' GB' "Used space",
round(free.p / 1024 / 1024 / 1024)
|| ' GB' "Free space"
FROM
(
SELECT
bytes
FROM
v$datafile
UNION ALL
SELECT
bytes
FROM
v$tempfile
UNION ALL
SELECT
bytes
FROM
v$log
) used,
(
SELECT
SUM(bytes) AS p
FROM
dba_free_space
) free,
(
select name from v$database) name
GROUP BY
free.p,name.name
/
Automating DBA Tasks with Oracle GoldenGate Oracle GoldenGate is widely recognized as one of the best tools for real-time data replication. It allows seamless database migrations, schema or table replication across homogeneous and heterogeneous environments, and enhances database performance by offloading reporting workloads. Additionally, it ensures high availability by enables Bi-directional or cascading database replication configurations. Beyond these well-known benefits, GoldenGate can also be leveraged for automating routine DBA tasks, reducing manual intervention and improving efficiency by Streamline Your DBA Tasks with EVENTACTIONS. Let's explore how you can leverage its EVENTACTIONS parameter to automate routine DBA tasks, reduce manual effort, and optimize workflows. In this post, I will demonstrate how GoldenGate can assist in automating key DBA operations, such as: Starting or stopping GoldenGate processes – Automate the m...
Assistant: Download Reference for Oracle Database/GI Update, Revision, PSU, SPU(CPU), Bundle Patches, Patchsets and Base Releases (Doc ID 2118136.2) Primary Note for Oracle GoldenGate Core Product Patch Sets (Doc ID 1645495.1) Primary Note for Database Proactive Patch Program (Doc ID 888.1) Troubleshoot Grid Infrastructure Startup Issues in 12.1.0.2 and Higher (Doc ID 2801511.1) Oracle Database Advisor Webcast Schedule and Archive recordings (Doc ID 1456176.1) Creating a Physical Standby database using RMAN restore the database from service (Doc ID 2283978.1) How to Roll Forward a Standby Database Using Recover Database From Service (Doc ID 2850185.1) Making Use Deferred PDB Recovery and the STANDBYS=NONE Feature with Oracle Multitenant (Doc ID 1916648.1) Roll Forward Physical Standby Using RMAN Incremental Backup in Single Command (Doc ID 2431311.1) 12c How to Roll Forward a Standby Database Using Recover Database From Service (Doc ID 2850185.1)Dataguard F...
Comments
Post a Comment