This blog provides valuable insights and information for Oracle DBA professionals.
arch.sql
Get link
Facebook
X
Pinterest
Email
Other Apps
-- ************************************************************************************************************
-- * Filename : arch.sql
-- * Author : Saravanakumar K
-- * Description : This script with show archivelog dest values from parmeter
-- * Usage : @arch.sql
-- * Version : v1
-- *************************************************************************************************************
set echo off
SET LINES 250 PAGES 49999 FEEDBACK OFF ECHO OFF
COL value FOR a180
COL name FOR a30
SELECT
inst_id,
name,
value
FROM
gv$system_parameter
WHERE
name IN (
'log_archive_dest_1',
'log_archive_dest_2',
'log_archive_dest_3',
'log_archive_dest_state_1',
'log_archive_dest_state_2',
'log_archive_dest_state_3'
)
ORDER BY
1,2
/
clear col
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...
Comments
Post a Comment