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

Thread: Indexed table?

  1. #1
    Join Date
    Jul 2001
    Posts
    334
    Hi,

    How we know that, the table is indexed?

    Please help.

  2. #2
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    Code:
       SELECT index_name. column_name 
        FROM user_ind_columns
        WHERE table_name IN ('tab1','tab2','tab3');
    Or

    you can use the view USER_INDEXES to get more information, like whether they are unique and etc.

    To learm more about the USER_INDEXES column names do
    Code:
     desc USER_INDEXES
    Hope this would help ou.

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


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