Dba_free_space
Oracle: List Datafiles, Tempfiles, and Logfiles with Sizes
Mar 26, 2024 / · 3 min read · oracle database administration performance optimization v$datafile v$tempfile v$logfile v$log v$controlfile dba_free_space ·Investigating Your Oracle Database Files: A Breakdown for Optimization This blog post delves into an Oracle Database code snippet designed to provide valuable insights into your database's storage and activity. We'll dissect its purpose, explain each component, and reveal key points to optimize your database's health …
Read MoreUnderstanding Tablespace Usage in Oracle Database
Feb 13, 2024 / · 4 min read · database administration monitoring optimization tablespace usage oracle dba_data_files dba_temp_files dba_free_space ·Description of Oracle Database SQL code for Tablespace Usage This code provides a comprehensive overview of tablespace usage in your Oracle database. Here's a breakdown of its purpose, components, and key points: Sample SQL Command 1set pages 999 2col tablespace_name format a40 3col "size MB" format 999,999,999 4col …
Read MoreOracle Tablespaces Needing More Space: SQL Script
Feb 6, 2024 / · 3 min read · database administration resource optimization performance monitoring data management tablespace datafiles dba_data_files dba_tablespaces dba_free_space ·Description of Oracle Database SQL code for Identifying Tablespaces Needing Space This code helps identify tablespaces requiring additional space to maintain an 80% utilization threshold in your Oracle database. Below is a breakdown of its purpose, components, and key points: Sample SQL Command 1set pages 999 lines 100 …
Read MoreAssessing Database Storage Utilization in Oracle Database
Dec 31, 2023 / · 3 min read · Database Size Free Space Used Space v$datafile v$tempfile v$log dba_free_space ·How large is the Oracle Database? Gain a comprehensive overview of database size, free space, and used space to proactively manage storage resources and plan for future growth. SQL Code 1col "Database Size" format a20 2col "Free space" format a20 3col "Used space" format a20 4select round(sum(used.bytes) / 1024 / 1024 …
Read More