Creating a Manifest File in the Database - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905
Prerequisite
  1. Set up or obtain access to the external object storage where you want to write data. Follow the instructions from your external object storage vendor.
  2. Set up an authorization to access external object storage that has the credential to the bucket. See Example: Controlling Access with an Authorization Object Using User and Password Credentials.
  1. Create a database table to store the manifest file entries.
    Example:
    CREATE TABLE ManifestTbl 
    ( ObjectName VARCHAR(1024) CHARACTER SET UNICODE NOT CASESPECIFIC,
      ObjectSize BIGINT
    );