z/Linux - FastExport

Teradata FastExport Reference

Product
FastExport
Release Number
16.10
Published
May 2017
Language
English (United States)
Last Update
2018-05-22
dita:mapPath
fmk1488824663357.ditamap
dita:ditavalPath
Audience_PDF_include.ditaval
dita:id
B035-2410
lifecycle
previous
Product Category
Teradata Tools and Utilities

To compile and link source files into a shared object module for INMOD, OUTMOD, and notify exit routines on z/Linux client systems, use the following syntax:



where the following is true:

gcc
Call to the program that invokes the native C compiler
m31
Generates code for a 32bit environment.
shared
Flag that produces a shared object that can then be linked with other objects to form an executable.
fPIC
Compiler option that generates Position Independent Code for all user exit routines.
o
Output file name.
sourcefile.c
UNIX file name(s) of the source file(s) for the INMOD or notify exit routine
sharedobjectname
Specifies the resulting shared object module
This is the name specified as the:
  • INMOD modulename parameter in the IMPORT of the FastExport job script
  • OUTMOD modulename parameter of the EXPORT command of the FastExport job script
  • EXIT name parameter of the NOTIFY option in the BEGIN EXPORT command of the FastExport job script (see Syntax).
The sharedobjectname can be any valid UNIX file name.