Archives of the TeradataForum
Message Posted: Wed, 05 Sep 2012 @ 15:48:45 GMT
Subj: | | Re: Fast Export 2GB file Limit |
|
From: | | Anomy Anom |
< -- Anonymously Posted: Wednesday, September 05, 2012 09:26 -- >
You have to compile and link the C program as a 32-bit "shared object" / "shared library" or a Windows "dll" that can be dynamically invoked.
At least the executable, and probably the source as well, will be platform-specific. It seems unlikely that you would want to develop an OUTMOD
for every platform when in nearly all cases it's unnecessary. But if you do, note: FastExport is 32-bit even on a 64-bit OS.
Then add "OUTMOD your_program_name" in your .EXPORT statement (and potentially remove "OUTFILE your_data_file_name").
Note also that the example in the forum attachments section does NOT split the output into multiple files; it writes all the data to a single
file.
|