CONFIG_PARAMETER

Used in

CONFIG  

Parent elements

METADATA_CONFIG 

Syntax

<CONFIG_PARAMETERAttribute Description Table
     compress="true | false" [true]
     keyword="string" [DEFAULTS]
>

     No Child Elements
</CONFIG_PARAMETER >

Description

Controls how a Metadata Service's data is stored in the database.

Restrictions


Attribute Descriptions for CONFIG_PARAMETER

AttributeUsage
compressWhen "true", XML documents are stored in a compressed format. Otherwise, they are uncompressed.
keywordAn ArcSDE DBTUNE configuration keyword used to determine how and where the tables, indexes, and other objects that support a Metadata Service are created in the database.
Back to top 

Examples for CONFIG_PARAMETER

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
    </ENVIRONMENT>
    <METADATA_CONFIG>
      <WORKSPACES>
        <SDEWORKSPACE name="unique_name" server="server_name" instance="port:5151" database="optional_database_name" user="user_name" password="user_password" />
      </WORKSPACES>
      <METADATA_CONTENT validate="true" index_words="automatic" />
      <TABLE_NAME prefix="imsmetadata" />
      <CONFIG_PARAMETER keyword="DEFAULTS" compress="true" />
      <INDEX_DEFINITION index_file="C:\Program Files\ArcGIS\ArcIMS\Metadata\Commands\index_def.txt" />
    </METADATA_CONFIG>
  </CONFIG>
</ARCXML>

Back to top