Windows Platforms - Parallel Transporter

Teradata Parallel Transporter Reference

Product
Parallel Transporter
Release Number
16.10
Published
July 2017
Language
English (United States)
Last Update
2018-06-28
dita:mapPath
egk1499705348414.ditamap
dita:ditavalPath
Audience_PDF_include.ditaval
dita:id
B035-2436
lifecycle
previous
Product Category
Teradata Tools and Utilities

Consider the following:

  • To generate and use a notify exit routine with Teradata PT on a Windows client system, the routine must meet the following requirements:
    • Written in C
    • The _dynamn entry point is __declspec
    • Saved as a dynamic-link library (DLL) file
  • To generate an INMOD or notify exit routine on a network-attached Windows client, do the following:
    1. Edit the routine source file and ensure that the dynamn is named "__declspec."
    2. Create a dynamic link library by entering the following command (in Microsoft C compiler syntax) where sourcefilename is the name of your INMOD or notify exit routine source file:

      cl /DWIN32 /LD sourcefilename

      This command produces a file with the same name as the source file, but with a .dll file extension.

  • To use a compiler other than the Microsoft C compiler the documentation for that compiler for instructions on creating .dll files.

For sample scripts that generate INMOD and notify exit routines the following examples.