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

Thread: performance of Indexes in Composite key

Threaded View

  1. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439

    Re: performance of Indexes in Composite key

    Originally posted by avi kumar
    Now my First question is which query will give me the better performance weather index created by composite primary key will work?
    Both will result in the same execution plan, hence the same performance in both cases. Composit index will (or will not) be used in botrh cases if optimizer chooses so. Nothing is preventing the usage of composite index in both cases, though.
    Second Question is if i take single any field in where condition like :
    "where f3='some value' "
    then the index created by composite primary key will work or not
    Generaly, in this case the composite index can not be used unless f3 is the leading column of the index.

    However in 9i cost based optimizer might choose to use your composite index even if f3 is not the leading column of the index.
    Last edited by jmodic; 01-23-2003 at 09:53 AM.
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

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