Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • standard Monitoring – 1 Oracle
  • Global Unique Identifier Generation in Oracle 9.2 SYS_GUID() Oracle
  • Sending SQLPLUS output in HTML format Oracle
  • 276434.1 Modifying the VIP or VIP Hostname of a 10g or 11g Oracle Clusterware Node Oracle
  • move_arch_files.ksh Linux/Unix
  • Zip and unzip with tar Linux/Unix
  • Temporary Tablespace Information and restriction. Oracle
  • Useful Solaris Commands on 28-SEP-2005 Linux/Unix
  • This is im telling Kishore Oracle
  • Explain Plan Output 2 Oracle
  • Search and Replace vi editor command. Linux/Unix
  • Reclaim temp tablespace for oracle 8, 8i Oracle
  • Default User Profile Oracle
  • set_env_dba Linux/Unix
  • Sequence Resetting 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

  • Export Import with QUERY Oracle
  • Order by with ROWNUM Oracle
  • tab.sql Oracle
  • AWR settings- MMON is not taking snapshot. Oracle
  • Mutating Table Error while using database trigger Oracle
  • login.sql 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
  • upload.html PHP/MYSQL/Wordpress
  • How to find pinned objects from shared pool. (pinned via dbms_shared_pool.keep) Oracle
  • tblwopk.sql /* Find Tables Without PK */ Oracle
  • oracle tips… from http://www.bijoos.com/oracle/douknow.htm Oracle
  • How to stop OCSSD Daemon Oracle
  • Check Oracle installed products using one command Oracle
  • DBMS_PROFILER for tuning PLSQL programs. Oracle
  • Disbaling DBA_SCHEDULER_JOBS Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme