Create Unregistered Table (Data Management)

Summary

Creates an empty table in a database or enterprise geodatabase. The table is not registered with the geodatabase.

Usage

  • The empty table created by this tool will either have a field named OBJECTID of type integer or contain the same field names and types of any selected input template table.

Parameters

LabelExplanationData Type
Table Location

The enterprise geodatabase or database in which the output table will be created.

Workspace
Table Name

The name of the table to be created.

String
Template Table Name
(Optional)

An existing table or list of tables with fields and attribute schema used to define the fields in the output table.

Table View
Configuration Keyword
(Optional)

Specifies the default storage parameters (configurations) for geodatabases in a relational database management system (RDBMS). This setting is applicable only when using enterprise geodatabase tables.

Configuration keywords are set by the database administrator.

Learn more about configuration keywords

String

Derived Output

LabelExplanationData Type
Output Table

The output unregistered table.

Table

arcpy.management.CreateUnRegisteredTable(out_path, out_name, {template}, {config_keyword})
NameExplanationData Type
out_path

The enterprise geodatabase or database in which the output table will be created.

Workspace
out_name

The name of the table to be created.

String
template
[template,...]
(Optional)

An existing table or list of tables with fields and attribute schema used to define the fields in the output table.

Table View
config_keyword
(Optional)

Specifies the default storage parameters (configurations) for geodatabases in a relational database management system (RDBMS). This setting is applicable only when using enterprise geodatabase tables.

Configuration keywords are set by the database administrator.

Learn more about configuration keywords

String

Derived Output

NameExplanationData Type
out_table

The output unregistered table.

Table

Code sample

CreateUnRegisteredTable example 1 (Python window)

The following Python window script demonstrates how to use the CreateUnRegisteredTable function.

import arcpy
arcpy.CreateUnRegisteredTable_management(
    r'Database Connections\Connection to Organization.sde', 'New_Table')

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics