Creating a new Teradata database table - Cloud - 8.0

Teradata

Version
Cloud
8.0
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Open Studio for Big Data
Talend Open Studio for Data Integration
Talend Open Studio for ESB
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > Database components (Integration) > Teradata components
Data Quality and Preparation > Third-party systems > Database components (Integration) > Teradata components
Design and Development > Third-party systems > Database components (Integration) > Teradata components

Procedure

  1. Double-click tTeradataRow to open its Basic settings view.
  2. Fill in the Host, Database, Username, and Password fields with your Teradata database connection details.
  3. In the Query field, enter the following SQL statement to create a new table named person with three columns id, name, sex.
    CREATE SET TABLE samples.person,
    FALLBACK,
    NO BEFORE JOURNAL,
    NO AFTER JOURNAL
    (
      id INTEGER NOT NULL,
      name VARCHAR(50),
      sex VARCHAR(20)
    )
    UNIQUE PRIMARY INDEX (id)