DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: explain plan

  1. #1
    Join Date
    Apr 2002
    Posts
    291

    explain plan

    Hi All
    Following is the out put of my explain plan for a frequently running query. I couldn't understand what exactly is :
    "TABLE ACCESS BY GLOBAL" ?? What exactly does this mean??



    We do have partitions for that particular table but not for indexes.


    Plan Table
    ------------------------------------------------------------------------------------------
    | Operation | Name | Rows | Bytes| Cost | Pstart| Pstop |
    ------------------------------------------------------------------------------------------
    | SELECT STATEMENT | | 7 | 357 |-3937092| | |
    | FILTER | | | | | | |
    | SORT GROUP BY | | 7 | 357 |-3937092| | |
    | TABLE ACCESS BY GLOBAL |D_CLAIM | 1 | 20 |-275532 | 24 | 24 |
    | NESTED LOOPS | | 124 | 6K|-3937092| | |
    | TABLE ACCESS FULL |D_FINTX | 14K| 432K| 663 | 24 | 24 |
    | INDEX RANGE SCAN |INDX_D_CLAIMFCCODE | 6K| | 4525 | | |
    ------------------------------------------------------------------------------------------


    Can any one tell me the meaning of TABLE ACCESS BY GLOBAL pls???


    Thanks in advance
    PNRDBA

  2. #2
    Join Date
    Dec 2001
    Location
    UK
    Posts
    1,684
    Hi.

    I believe your routine is trimming the output and it should read something like:

    TABLE ACCESS BY GLOBAL INDEX [Access Type] [Index Name]

    Cheers

    Tim...
    Tim...
    OCP DBA 7.3, 8, 8i, 9i, 10g, 11g
    OCA PL/SQL Developer
    Oracle ACE Director
    My website: oracle-base.com
    My blog: oracle-base.com/blog

  3. #3
    Join Date
    Jul 2003
    Location
    Sofia, Bulgaria
    Posts
    91
    If this is partitioned table (because you have values for pstart and pstop) that should be global index, I agree with Tim. If the index was local, it will be LOCAL.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width