Search found 166 matches

by thumsup9
Mon Oct 09, 2006 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reason for mutex_unlock() Error ?
Replies: 11
Views: 5983

Do you have any other stages like IPC or Link Partioner in your job design. Once had a similar problem and removed the IPC and it performed OK.

Another option I found in the forum is to check inter process under Enable row buffer option and increase the time out-say 60sec.

HTH
by thumsup9
Mon Oct 09, 2006 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Full Name
Replies: 8
Views: 2898

Trim function with option D

Removes leading and trailing spaces and tabs, and reduces multiple spaces and tabs to single ones.
by thumsup9
Mon Oct 09, 2006 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reason for mutex_unlock() Error ?
Replies: 11
Views: 5983

Do you have enough space on the disk where you are writing your target file.
by thumsup9
Thu Oct 05, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Job 2270 Phantom 17275
Replies: 4
Views: 2075

somewhere you are carrying addional columns either in Datastage or the target SQL code..
by thumsup9
Thu Oct 05, 2006 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import validation failed
Replies: 8
Views: 8599

Check your metadata for Balanced_Qty, did you mention the same scale and precision for the field as it appears in the data.
by thumsup9
Thu Oct 05, 2006 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fractional truncation issue
Replies: 9
Views: 7099

Are you trying to insert Decimal value into an Integer, it looks an issue with datatype.
by thumsup9
Wed Oct 04, 2006 1:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController warning in DS parallel job
Replies: 5
Views: 1604

Sri,

What do you want to do here. Do you want to insert duplicate data into the target table. If not why dont you update and insert.
by thumsup9
Wed Oct 04, 2006 1:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running more than 3 jobs in a sequence- giving a fatal error
Replies: 9
Views: 3785

Is anyone of the jobs renamed or missing, i think its not abel to attach the job. Can you please post the complete error message.
by thumsup9
Wed Oct 04, 2006 1:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting a Large text file into small files
Replies: 13
Views: 5472

thumsup9 wrote:Something like this with a Unix Shell Script

for file in *
do
mv "${file}" "${file}".txt.`date`
done
oops realized you are working on Windows..
by thumsup9
Wed Oct 04, 2006 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting a Large text file into small files
Replies: 13
Views: 5472

Something like this with a Unix Shell Script

for file in *
do
mv "${file}" "${file}".txt.`date`
done
by thumsup9
Mon Oct 02, 2006 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing the unprintable characters
Replies: 1
Views: 818

Trim(Ereplace(Oconv(Input,"MCP"),'.',''))

May be this will work.
by thumsup9
Mon Oct 02, 2006 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings with ChangeCapture Stage
Replies: 6
Views: 1683

Re: Warnings with ChangeCapture Stage

Third Warning : Sequential_File_31: When checking operator: A sequential operator cannot preserve the partitioning of the parallel data set on input port 0. [quote] I think you are trying to Preserve partition while writing to a Seq File and hence this error. Try Clear instead of Preserve before wr...
by thumsup9
Mon Oct 02, 2006 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length(Varchar) in db2
Replies: 8
Views: 3064

Kris,

What happens when you reload your data using Trim(Convert(Char(000),'',Input)) instead of Trim() in your transformer stage.

Thums!!
by thumsup9
Thu Sep 21, 2006 11:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Control Characters???
Replies: 4
Views: 1091

Nielsek,

I will probably do using some unix commands like "tr - d" or :%s/.^H//g if the source file is a sequential file. Search for Control Characters and you will find some interesting threads in this forum.
by thumsup9
Thu Sep 21, 2006 11:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error When Running job with IDOC Extract stage
Replies: 2
Views: 1123

CALL_FUNCTION_SIGNON_REJECTED Google says.. Cause: The user tried to log onto the target system without a valid user ID. Runtime Error: CALL_FUNCTION_SIGNON_REJECTED The error code signifies the following: 1) Incorrect password or invalid user ID 2) User locked 3) Too many logon attempts 5) Error in...