Showing:

Diagrams
Instances
Model
Properties
Source
Used by
Element level_of_isolation
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_level_of_isolation.tmp#level_of_isolation_read_uncommitted ansi2003_xsd_Element_level_of_isolation.tmp#level_of_isolation_read_committed ansi2003_xsd_Element_level_of_isolation.tmp#level_of_isolation_repeatable_read ansi2003_xsd_Element_kw_serializable.tmp#kw_serializable
Properties
content complex
Used by
Element isolation_level
Model
Children kw_serializable, read_committed, read_uncommitted, repeatable_read
Instance
<level_of_isolation xmlns="http://www.sqlparser.com/xml/ansi2003">
  <read_uncommitted>{1,1}</read_uncommitted>
  <read_committed>{1,1}</read_committed>
  <repeatable_read>{1,1}</repeatable_read>
  <kw_serializable>{1,1}</kw_serializable>
</level_of_isolation>
Source
<xs:element name="level_of_isolation">
  <xs:complexType>
    <xs:choice>
      <xs:element name="read_uncommitted">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="kw_read"/>
            <xs:element ref="kw_uncommitted"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="read_committed">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="kw_read"/>
            <xs:element ref="kw_committed"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="repeatable_read">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="kw_repeatable"/>
            <xs:element ref="kw_read"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="kw_serializable"/>
    </xs:choice>
  </xs:complexType>
</xs:element>
Element level_of_isolation / read_uncommitted
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_kw_read.tmp#kw_read ansi2003_xsd_Element_kw_uncommitted.tmp#kw_uncommitted
Properties
content complex
Model
Children kw_read, kw_uncommitted
Instance
<read_uncommitted xmlns="http://www.sqlparser.com/xml/ansi2003">
  <kw_read>{1,1}</kw_read>
  <kw_uncommitted>{1,1}</kw_uncommitted>
</read_uncommitted>
Source
<xs:element name="read_uncommitted">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="kw_read"/>
      <xs:element ref="kw_uncommitted"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>
Element level_of_isolation / read_committed
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_kw_read.tmp#kw_read ansi2003_xsd_Element_kw_committed.tmp#kw_committed
Properties
content complex
Model
Children kw_committed, kw_read
Instance
<read_committed xmlns="http://www.sqlparser.com/xml/ansi2003">
  <kw_read>{1,1}</kw_read>
  <kw_committed>{1,1}</kw_committed>
</read_committed>
Source
<xs:element name="read_committed">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="kw_read"/>
      <xs:element ref="kw_committed"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>
Element level_of_isolation / repeatable_read
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_kw_repeatable.tmp#kw_repeatable ansi2003_xsd_Element_kw_read.tmp#kw_read
Properties
content complex
Model
Children kw_read, kw_repeatable
Instance
<repeatable_read xmlns="http://www.sqlparser.com/xml/ansi2003">
  <kw_repeatable>{1,1}</kw_repeatable>
  <kw_read>{1,1}</kw_read>
</repeatable_read>
Source
<xs:element name="repeatable_read">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="kw_repeatable"/>
      <xs:element ref="kw_read"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>