Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • PLSQL Table Syntax 2 Oracle
  • longtx.sql with the flag whether session is blocking any DML locks or not. Oracle
  • lck.sql Oracle
  • Parallel DML Oracle
  • pvm_pre_change.sql Oracle
  • metalink all dynamic view reference notes. Oracle
  • Jai Shree Ram Oracle
  • Session_info.ksh Linux/Unix
  • import-export with multiple files Oracle
  • How to calculate PROCESSES parameter Oracle
  • SQL_PLAN.sql for checking real execution plan Oracle
  • AWR license Oracle
  • Checking SQL Server Version SQL Server
  • Reclaim temp tablespace for oracle 8, 8i Oracle
  • Test Case for Inserting Multiple (2.3 Million rows in 26 Seconds) Oracle

Absolute file number and relative file number

Posted on 19-Aug-2005 By Admin No Comments on Absolute file number and relative file number

Interpreting Wait Event “file#” and “block#” parameters

=======================================================

This reference note describes how to interpret file# and block# parameters from wait events (eg: obtained from or from the WAIT trace lines in trace files). The text uses:

&AFN to represent the absolute file number (file#)

&BLOCKNO to represent the block number (block#)

IMPORTANT: The details here assume that file# is an absolute file number.

file#

=====

The name of the file can be displayed with the following SQL:

SELECT tablespace_name, file_name

FROM dba_data_files

WHERE file_id = &AFN

;

If the file number does not appear in with this select in Oracle8i / 9i AND file# is greater than the DB_FILES parameter value then the file is probably a TEMPFILE. In this case the filename can be found using:

SELECT tablespace_name, file_name

FROM dba_temp_files f, v$parameter p

WHERE p.name=’db_files’

AND f.file_id+p.value = &AFN

;

block#

======

If the file is NOT a TEMPFILE then the following query should show the name and type of the segment:

SELECT owner , segment_name , segment_type

FROM dba_extents

WHERE file_id = &AFN

AND &BLOCKNO BETWEEN block_id AND block_id + blocks -1

;

In Oracle8 onwards add PARTITION_NAME to the select list above to obtain details of the partition (if any).

If the block# is 1 then this is typically a datafile header and the query above will return no rows.

For INDEX segments it is often desirable to know which table the index is on. Eg:

SELECT table_owner, table_name

FROM dba_indexes

WHERE owner=’&OWNER’

AND index_name=’&SEGMENT_NAME’

;

Absolute File Number

====================

In Oracle7 all file# values can be treated as the absolute file number for the queries in this note.

In Oracle8 onwards each datafile has a relative file number and an absolute file number. The relative file number is relative to the tablespace which owns the datafile. The following query will show the absolute and relative file numbers for datafiles in the database:

SELECT tablespace_name, file_id “AFN”, relative_fno “RFN”

FROM dba_data_files;

In Oracle8i onwards a database can also contain TEMPFILES. The following query will show the absolute and relative file numbers for tempfiles in the database:

SELECT tablespace_name, file_id + value “AFN”, relative_fno “RFN”

FROM dba_temp_files, v$parameter

WHERE name=’db_files’;

It is important to use the correct (absolute) file number in the queries in this note.

Oracle, SQL scripts

Post navigation

Previous Post: Important Script Method for tuning
Next Post: True Session Wait Activity in Oracle 10g Verygood

Related Posts

  • V$CONTROLFILE_RECORD_SECTION reference notes. Oracle
  • Find_table_size.sql Oracle
  • Query to Generate aggregate on every 30 mins. Oracle
  • SQLPLUS COPY command Precautions. Oracle
  • UNderstand and eliminate Latch contention. Oracle
  • FGA Part-I Oracle

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (392)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (0)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (341)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025
  • MYSQL and Oracle Comparison for Oracle DBA24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Optimizer SORT Operations Oracle
  • How to connect to Oracle Database with Wallet with Python. Oracle
  • Disbaling DBA_SCHEDULER_JOBS Oracle
  • Find_planinfo.sql Oracle
  • Default User Profile Oracle
  • rm_backup_arch_file.ksh Linux/Unix
  • MYSQL and Oracle Comparison for Oracle DBA MYSQL
  • Creating never expiring DB user accounts in Oracle Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme