Enable or Disable Oracle GATHER_STATS_JOB for Automatic Statistics Collection using dbms_scheduler
Oct 1, 2025 / · 4 min read · oracle database dbms scheduler statistics gathering performance tuning database administration pl/sql optimizer statistics maintenance tasks dbms_scheduler ·Enable or Disable Oracle GATHER_STATS_JOB for Automatic Statistics Collection The GATHER_STATS_JOB is a critical Oracle Database scheduled job that automatically collects optimizer statistics to ensure the database query optimizer generates efficient execution plans. This job is enabled by default when creating a new …
Read MoreList All Oracle AWR Baselines Using DBA_HIST_BASELINE
Sep 28, 2025 / · 5 min read · Oracle AWR Performance Tuning Database Administration SQL Scripts Baseline Management Performance Monitoring DBA DBA_HIST_BASELINE ·List All Oracle AWR Baselines Using DBA_HIST_BASELINE This SQL script retrieves all AWR baselines stored in an Oracle Database, displaying critical information about each baseline including its identifier, name, and associated snapshot range. AWR baselines preserve specific periods of database performance statistics …
Read MoreHow to Manually Take an AWR Snapshot in Oracle Database with dbms_workload_repository.create_snapshot
Sep 27, 2025 / · 5 min read · Oracle Database AWR Performance Tuning Database Administration PL/SQL Monitoring Troubleshooting Database Optimization dbms_workload_repository ·How to Manually Take an AWR Snapshot in Oracle Database with dbms_workload_repository.create_snapshot What is Oracle AWR Snapshot Creation? Creating a manual AWR snapshot in Oracle Database allows database administrators to capture performance statistics at specific points in time, providing precise data for …
Read MoreHow to Change Oracle AWR Retention Period to 14 Days using dbms_workload_repository
How to Change Oracle AWR Retention Period to 14 Days using dbms_workload_repository.modify_snapshot_settings Purpose The Oracle code changes the Automatic Workload Repository (AWR) retention period from the default 8 days to 14 days (two weeks). This allows database administrators to store performance snapshots for a …
Read MoreHow to Change Oracle AWR Snapshot Interval to 30 Minutes using dbms_workload_repository.modify_snapshot_settings
How to Change Oracle AWR Snapshot Interval to 30 Minutes using dbms_workload_repository.modify_snapshot_settings Purpose The Oracle Database Automatic Workload Repository (AWR) collects and stores performance statistics to help database administrators monitor and analyze database performance over time. The code …
Read MoreHow to Check Oracle AWR Snapshot Interval and Retention Settings using table dba_hist_wr_control
Sep 24, 2025 / · 6 min read · Oracle Database AWR Performance Tuning Database Administration SQL Scripts Monitoring Workload Repository DBA dba_hist_wr_control ·How to Check Oracle AWR Snapshot Interval and Retention Settings using table dba_hist_wr_control Purpose The Oracle Database Automatic Workload Repository (AWR) is a critical component for performance monitoring and database tuning that automatically collects and stores performance statistics at regular intervals. This …
Read MoreOracle AWR Report Generation Using awrrpt.sql Script
Sep 23, 2025 / · 6 min read · Oracle AWR Performance Tuning Database Administration SQL Scripts Oracle Diagnostics Database Monitoring RDBMS ·Oracle AWR Report Generation Using awrrpt.sql Script The awrrpt.sql script is a powerful Oracle tool that generates comprehensive performance reports from the Automatic Workload Repository (AWR), providing database administrators with detailed insights into database performance over specific time periods. This script …
Read MoreHow to Uninstall Oracle Statspack Using the spdrop Script - Complete Guide
Sep 6, 2025 / · 5 min read · oracle database statspack database administration performance tuning sql plus oracle dba database cleanup oracle scripts ·How to Uninstall Oracle Statspack Using the spdrop Script - Complete Guide Oracle Statspack uninstallation is accomplished using the @?/rdbms/admin/spdrop command, which completely removes the Statspack performance monitoring framework from your Oracle database. This command removes all associated objects including the …
Read MoreOracle Database Statspack spreport.sql Script: Complete Performance Tuning Guide
Sep 3, 2025 / · 5 min read · oracle database performance tuning statspack database administration sql scripts database monitoring performance analysis database optimization ·Oracle Database Statspack spreport.sql Script: Complete Performance Tuning Guide The Oracle Database @?/rdbms/admin/spreport.sql script is a comprehensive performance reporting tool that generates detailed Statspack reports for database analysis and optimization. This essential script provides database administrators …
Read MoreOracle Database Statspack Snapshot Purge Script (sppurge): Complete Guide to sppurge Administration
Sep 2, 2025 / · 4 min read · oracle-database statspack performance monitoring database administration snapshot management storage optimization dba scripts oracle tuning ·Oracle Database Statspack Snapshot Purge Script: Complete Guide to sppurge Administration The Oracle Database @?/rdbms/admin/sppurge; command is a critical administrative script used to delete old Statspack snapshots and manage storage space in the PERFSTAT schema. This comprehensive guide explores the purpose, …
Read More