queryPlan Data Type

Instantiates a new query plan.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs wrapped by description
execMode string element 0/1   The exec mode.
hasSubQuery boolean element 1/1   The has sub query.
planString string element 0/1   The plan string.
prepareHandle queryPrepareHandle element 0/1   The prepare handle.
queryCost queryCostTO element 0/1   The query cost.
scanMode string element 0/1   The scan mode.
tablesQueried string element 0/unbounded tablesQueried The tables queried.

Example

<queryPlan>
  <tablesQueried>
    <tablesQueried>...</tablesQueried>
  </tablesQueried>
  <hasSubQuery>...</hasSubQuery>
  <execMode>...</execMode>
  <scanMode>...</scanMode>
  <planString>...</planString>
  <queryCost>
    <estimatedExecTimeMillis>...</estimatedExecTimeMillis>
    <estimatedResourceUsage>...</estimatedResourceUsage>
    <costType>...</costType>
  </queryCost>
  <prepareHandle>
    <prepareHandleId>...</prepareHandleId>
  </prepareHandle>
</queryPlan>