OPTPROFILE 요소에 대한 XML 스키마

OPTPROFILE 요소는 최적화 프로파일의 루트입니다.

이 요소는 다음과 같이 정의됩니다.
XML Schema

   <xs:element name="OPTPROFILE">
      <xs:complexType>
         <xs:sequence>
            <!-- Global optimization guidelines section. -->
            <!-- At most one can be specified. -->
            <xs:element name="OPTGUIDELINES" 
                   type="globalOptimizationGuidelinesType" minOccurs="0"/>
            <!-- Statement profile section. Zero or more can be specified -->
            <xs:element name="STMTPROFILE" type="statementProfileType" 
                   minOccurs="0" maxOccurs="unbounded"/>
         </xs:sequence>
         <!-- Version attribute is currently optional -->
         <xs:attribute name="VERSION" use="optional"/>
      </xs:complexType>
   </xs:element>

설명

선택적 OPTGUIDELINES 하위 요소는 최적화 프로파일에 대한 전역 최적화 지침을 정의합니다. 각 STMTPROFILE 하위 요소는 명령문 프로파일을 정의합니다. VERSION 속성은 특정 최적화 프로파일이 작성되고 유효성 확인된 현재 최적화 프로파일 스키마를 식별합니다.