registertable

Description

Registers a table in the ArcSDE table registry.

Attributes

Attribute Description Required
rowidtypeRow ID column type. [user|sde|none] No. Defaults to none
rowidcolumnRow ID column name. No
multiversionedRegister the table as multiversioned. No. Defaults to false
basesaveRegister the table as multiversioned with option 'move edits to base'. No. Defaults to false
hiddenRegisters the table as hidden. No. Defaults to false
minimumIdSets the minimum ID allowed for the registered table. No
creationKeywordSets the configuration keyword used for table creation. No
overwriteIf true and the table is already registered, alter that registration otherwise abort. No. Defaults to false

Examples

  <sde:sdeconnection id="sde.conn" 
      host="127.0.0.1" password="pass" username="myuser"/>
      
  <sde:registertable connection="sde.conn"
       rowidtype="sde" rowidcolumn="objectid"
       description="A Business Table"
       minimumid="1"
       multiversioned="true"
       overwrite="true">
      <sde:tablelist refid="tablelist"/>
  </sde:registertable>