Search found 6797 matches

by DSguru2B
Thu Feb 22, 2007 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After-job subroutine does not work
Replies: 19
Views: 3586

mv FILE1.txt FILE1.txt2 gives us the impression that you are just renaming the file extension, unless FILE1 is different for both the files. Regardless, you are renaming the file. Provide fully qualified paths. Something like #!/usr/bin/ksh export FILE1 = "fully/qualified/path/of/FILE1.txt"...
by DSguru2B
Thu Feb 22, 2007 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert records based on certian contents of records
Replies: 8
Views: 1957

Do this: Field(in.Col, "$",1):Field(in.Col,"$",2)[1,1]:Field(CONVERT('ABCDEFGHIJKLMNOPQRSTUVWXYZ','',Upcase(in.Col)),"$",2) Get everything before the dollar sign, concatenate it to the first character of everything after the $ sig...
by DSguru2B
Thu Feb 22, 2007 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP with Database stage
Replies: 3
Views: 1449

Have you gone through the DataStage Plug-In and Installation Guide. I also recommend the Parallel Job Developer's Guide.
by DSguru2B
Thu Feb 22, 2007 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Edition of Windows Vista that support DataStage Server
Replies: 8
Views: 2874

"They" might come out with another dot releases for vista compatability. Have not heard anything so far as of yet.
by DSguru2B
Thu Feb 22, 2007 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Job status
Replies: 8
Views: 1856

Also make sure directory &PH& is kept in check as that can reciprocate with slower response times. And basically clear the status file and keep the log file in check as well.
by DSguru2B
Thu Feb 22, 2007 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to view data on PX on windows 2000 professional
Replies: 8
Views: 2249

Get 7.5x2 if you have to use parallel jobs. As simple as that.
by DSguru2B
Thu Feb 22, 2007 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

kumar_s wrote:DSguru2B, atleast for this sake you can display you name DSguru2B .

Name, o yea sure, its Brian :wink:
by DSguru2B
Wed Feb 21, 2007 11:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Covert comma separated decimal field to DataStage decimal
Replies: 5
Views: 7107

Use

Code: Select all

StringToDecimal(CONVERT(',','',in.Col))
by DSguru2B
Wed Feb 21, 2007 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

venkycool wrote:Ohhhhhh...is it? Thanks Brian and it was very informatiove...will keep this in mind...

O yea. Thank Brian :wink:
by DSguru2B
Wed Feb 21, 2007 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Parallel custom Stage(Build)
Replies: 8
Views: 3735

Hmm, ok, I will have to test out a small routine written in C++. Thanks for the info. And yes I am Brian :wink: . I guess I have to take out Brian's name.
by DSguru2B
Wed Feb 21, 2007 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Number
Replies: 9
Views: 2642

Vincent has an FAQ entry on the same.
by DSguru2B
Wed Feb 21, 2007 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

This happened becuase of CR. DOS files have CRLF as line terminators and UNIX files have only LF. Since it was a DOS file and specified as UNIX, it took LF from the CRLF and left out the CR which came in as thickened pipes.
by DSguru2B
Wed Feb 21, 2007 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: incremental loading
Replies: 6
Views: 2549

Usually two timestamps are stored in a control table. These timestamps are passed as a job parameter to the sql select (select * from table where date between #date1# AND #date2#). Once your cycle finishes OR before your next run, the control table is updated/inserted with new date records and selec...
by DSguru2B
Wed Feb 21, 2007 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Multiple rows in output from single row in input
Replies: 16
Views: 4276

No problemo. That comment of mine was a hasty move. I got stuck with some junk data in my output and I jumped to that conclusion. No wonder Ray calls me a grasshopper.
by DSguru2B
Wed Feb 21, 2007 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Multiple rows in output from single row in input
Replies: 16
Views: 4276

bcarlson wrote:I think a buildop would be much easier. Then there are also no restrictions on sequential vs. parallel. That always throws a red flag for me.

No restrictions for sequential vs. parallel in a routine as well. I think it depends upon how a person wants to do it.