Creating a Table without Constraints | Teradata Access Module for OLE DB - Creating a Table without Constraints - Access Module

Teradata® Tools and Utilities Access Module Reference - 20.00

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
Lake
VMware
Product
Access Module
Release Number
20.00
Published
October 2023
ft:locale
en-US
ft:lastEdition
2025-06-12
dita:mapPath
cya1691484517272.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
hjf1479308836950
Product Category
Teradata Tools and Utilities

Create table without constraints is a new feature in Teradata Access Module for OLE DB. It allows users to create the target table without any constraints.

Exporting a table from Analytics Database to SQL server with Create table without Constraints feature:

  • Option 1: Select a Source

    Selected Teradata as source and used “srctable” with both not null and primary index constraints.

    CREATE SET TABLE EFXUSER.srctable ,FALLBACK ,
         NO BEFORE JOURNAL,
         NO AFTER JOURNAL,
         CHECKSUM = DEFAULT,
         DEFAULT MERGEBLOCKRATIO,
         MAP = TD_MAP1
         (
          A INTEGER NOT NULL,
          B CHAR(10) CHARACTER SET LATIN NOT CASESPECIFIC,
    PRIMARY KEY ( A ));
    
  • Option 2: Select a Destination

    Select SQL Server as destination.

  • Option 3: Select from Settings
    1. Click Settings>>.
      Settings.svg
    2. Select Create table without constraints checkbox and click OK.
    3. Click Launch and run the export job.
      Launch.svg
    4. Connect to destination (for example, SQL Server database) and verify the srctable.
      Destination_Table.svg

A destination table (srctable) with two columns has been created without any keys.