Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • plan10g.sql good Oracle
  • Oracle Standby Database Library Index from Metalink Oracle
  • cif crons Linux/Unix
  • Nice notes on wait events Oracle
  • How to set Processes Parameter Oracle
  • How to find password change date for user Oracle
  • oracle Dba site Oracle
  • ORA-00064: object is too large to allocate on this O/S during startup Oracle
  • Sort with ASCII order and Numeric Order Linux/Unix
  • sql_plan9i.sql Oracle
  • 556976.1 Oracle Clusterware: Components installed Oracle
  • Virtual Indexes in Oracle Oracle
  • ORACLE_SID in sqlplus Oracle
  • Sample WW22 listener.ora Oracle
  • Find_table_size.sql 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

  • DBMS_JOB all example Oracle
  • Display the top 5 salaries for each department using single SQL Oracle
  • Pending Transaction Neighbors Script Oracle
  • Good links for x$ tables in oracle. Oracle
  • Oracle Identifiers Oracle
  • TNSNAMES entries details Oracle

Leave a Reply Cancel reply

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

Categories

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

Recent Posts

  • load SPM baseline from cursor cache05-Jun-2025
  • Drop all SPM baselines for SQL handle05-Jun-2025
  • Load SPM baseline from AWR05-Jun-2025
  • Drop specific SQL plan baseline – spm05-Jun-2025
  • findinfo.sql (SQL for getting CPU and Active session info)27-May-2025
  • SQL Tracker by SID sqltrackerbysid.sql22-Apr-2025
  • How to connect to Oracle Database with Wallet with Python.21-Mar-2025
  • JSON/XML Types in Oracle18-Mar-2025
  • CPU Core related projections12-Mar-2025
  • Exadata Basics10-Dec-2024

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Zip and unzip with tar Linux/Unix
  • crtgr.sql /* For creating trigger from data dictionary */ Oracle
  • fkwoind.sql fkwoindex.sql Oracle
  • oracle 11g RAC on vmware Oracle
  • process id based files and processes Linux/Unix
  • Oracle Internal Good Websites 1 Oracle
  • 556976.1 Oracle Clusterware: Components installed Oracle
  • Multiple listeners Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme