Search found 5168 matches
- Sat Jul 29, 2006 3:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Catch Duplicate rows
- Replies: 12
- Views: 5204
Re: Catch Duplicate rows
If you want to have two different files, have another column as indicator from source with the above query modified. I dont have database access now to test the query, but it should look something like below. Select col1, col2, (select Decode(sign(count(*)-1),0,'N','Y') f...
- Sat Jul 29, 2006 3:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal error: exceeds maximum message size
- Replies: 1
- Views: 690
Check whether your project folder is full. What is your job design. It seems the job log is hitting the max limit. Are you loggin any message withing the job. Post the full warning/error message that appear in the log, Do you find any other message below/ above this message? Do a reset, and find the...
- Sat Jul 29, 2006 1:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal error
- Replies: 3
- Views: 1885
- Sat Jul 29, 2006 1:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Filter
- Replies: 6
- Views: 8750
- Sat Jul 29, 2006 1:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Load Seq.file to table
- Replies: 8
- Views: 3628
- Sat Jul 29, 2006 1:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Input Value Change
- Replies: 8
- Views: 2175
Sort the records based on the required column. You need to compare the previous record with current record . This can be done easily via stage variable. User three stage variable in transformer. vOldRec = '' vIsEqual = '' vCurrRec = '' Initialise all the variable to '' In transormer derivation, vOld...
- Sat Jul 29, 2006 1:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Record count not matching up
- Replies: 6
- Views: 1219
- Sat Jul 29, 2006 12:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Duplicate Records
- Replies: 30
- Views: 13034
- Sat Jul 29, 2006 12:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Insert a dummy record if file is empty
- Replies: 7
- Views: 2480
Try to play with following command to know whether the file is empty in dos.
Code: Select all
find /v /c "" <file name> or find /v /c "!@#$" <file name> - Sat Jul 29, 2006 12:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parameter in the ExecCommand Activity Stage
- Replies: 7
- Views: 1675
- Sat Jul 29, 2006 12:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Head & Tail Stage
- Replies: 2
- Views: 2250
- Sat Jul 29, 2006 12:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inserting timestamp into database
- Replies: 11
- Views: 2337
- Sat Jul 29, 2006 12:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hawk Availability
- Replies: 3
- Views: 770
- Sat Jul 29, 2006 12:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning message when changing lookup stage to a join stage
- Replies: 6
- Views: 1524
- Sat Jul 29, 2006 12:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning - "Sequential file cannot preserve partion"
- Replies: 9
- Views: 4727
I have tried the copy stage theory, setting the preserve to clear, this does not suppress the warning What is your job design, post your full warning message, addressing the the name of the stage. Most of the warning can be get ridden. Unless you have a sequential oprator connected to a preceeding ...