|
|
Archives of the TeradataForum
Message Posted: Mon, 10 Sep 2007 @ 15:34:17 GMT
Subj: | | Re: Tpump error: UTY6625 Packing has changed to 17 |
|
From: | | Geoffrey Rommel |
| 04:04:04 UTY6625 WARNING: Packing has changed to 17 statement(s) per request. | |
| **** 04:04:04 UTY6664 PACK factor was determined by the DATA parcel size limit. Apply: 1, Stmt: 1. | |
These are just warnings. If you code a pack factor of 17 in your script, they will not appear.
| **** 04:04:04 UTY4019 Access module error '34' received during 'File open' operation: | |
| 'pmUnxDskOpen: fopen error (Invalid argument)' File Name : '\\.\.\abc.dat' | |
This is the true error: an invalid argument to fopen(). If you're trying to read from the current directory on Windows, the file name should be
something like '.\abc.dat', or maybe '.\\abc.dat'; on Unix, './abc.dat'.
| |