top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are XML indexes and secondary XML indexes?

+3 votes
253 views
What are XML indexes and secondary XML indexes?
posted Feb 13, 2015 by Rajneesh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

The primary XML index is a B+tree and is useful because the optimizer creates a plan for the entire query.

It is always better to split the entire XML columns into relational rows and columns.

The primary XML index contains one row for each node in the XML instance.

The secondary XML indexes can be created to enhance the performance.
There are the types of secondary indexes:

PATH secondary XML index
If the use of path expressions on XML columns is prominant, the PATH secondary XML index can speed up the task.

VALUE secondary XML index
The VALUE index can be used if your task involves quering unknown attribute names.

PROPERTY secondary XML index
Clustering paths within each XML instance in the PROPERTY index can be beneficial when multiple values are retrieved from individual XML instances.

answer Feb 14, 2015 by Vrije Mani Upadhyay
...