Tabelle zu Geodatabase (mehrfach) (Conversion)

Zusammenfassung

Konvertiert eine oder mehrere Tabellen in Geodatabase-Tabellen als Ausgabe in Personal-, File- oder SDE-Geodatabases. Eingaben können dBASE-, INFO-, VPF-, OLE-DB- oder Geodatabase-Tabellen oder Tabellensichten sein.

Verwendung

Syntax

TableToGeodatabase_conversion (input_table, output_geodatabase)
ParameterErläuterungDatentyp
input_table
[input_table,...]

Die Liste der Tabellen, die in Geodatabase-Tabellen konvertiert werden sollen. Eingabe-Tabellen können INFO-, dBASE-, OLE-DB- oder Geodatabase-Tabellen oder Tabellensichten sein.

Table View
output_geodatabase

Die Ziel-Geodatabase, in die die Ausgabe-Geodatabase-Tabellen eingefügt werden.

Workspace

Codebeispiel

TableToGeodatabase – Beispiel (Python-Fenster)

Das folgende Skript im Python-Fenster veranschaulicht, wie Sie das Werkzeug "TableToGeodatabase" im unmittelbaren Modus verwenden.

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.TableToGeodatabase_conversion(["accident.dbf", "vegtable.dbf"], "C:/output/output.gdb")
TableToGeodatabase – Beispiel (Standalone-Python-Skript)

Das folgende eigenständige Skript veranschaulicht, wie Sie das Werkzeug "TableToGeodatabase" verwenden.

# Name: TableToGeodatabase_Example2.py
# Description: Use TableToDBASE to copy tables to geodatabase format
# Author: ESRI
 
# Import system modules
import arcpy
from arcpy import env
 
# Set environment settings
env.workspace = "C:/data"

# Make list of all tables in workspace
tables = arcpy.ListTables()
# list of tables should be similar to this: ["accident.dbf", "vegtable.dbf"]
 
# Set local variables
outLocation = "C:/output/output.gdb"

try: 
    # Execute TableToGeodatabase
    print "Importing tables to gdb: " + outLocation
    arcpy.TableToGeodatabase_conversion(tables, outLocation)
except:
    print arcpy.GetMessages()

Umgebungen

Verwandte Themen

Lizenzinformationen

ArcView: Ja
ArcEditor: Ja
ArcInfo: Ja

7/10/2012