Example – Multiple Schemas in a Job Script - Parallel Transporter

Teradata® Parallel Transporter User Guide - 20.00

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Lake
Product
Parallel Transporter
Release Number
20.00
Published
October 2023
ft:locale
en-US
ft:lastEdition
2026-03-09
dita:mapPath
jyo1691132621468.ditamap
dita:ditavalPath
tvt1507315030722.ditaval
dita:id
yok1478610767644
Product Category
Teradata Tools and Utilities
DEFINE SCHEMA ATTENDEES 
DESCRIPTION 'Employees who attended the training session'
(
  ATTENDEE_NAME     CHAR(24),
  TRAINING_FEEBACK  VARCHAR(256)
);       
        
DEFINE SCHEMA ABSENTEES 
DESCRIPTION 'Employees who failed to attend the training session'
(
  ABSENTEE_NAME  CHAR(24),
  EXCUSE         VARCHAR(256)
); 
          
DEFINE SCHEMA PRESENTERS 
DESCRIPTION 'Employees who gave presentations at the training session'
(
  PRESENTER_NAME      CHAR(24),
  PRESENTATION_TOPIC  VARCHAR(128)
);