Search found 42189 matches

by chulett
Wed Sep 23, 2009 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spaces in the File
Replies: 7
Views: 2087

Not talking about your source, but I see I misread your post anyway. You say you need to produce a "fixed width file" so we need to know what properties you have set in the target sequential file stage.
by chulett
Wed Sep 23, 2009 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spaces in the File
Replies: 7
Views: 2087

Fixed-width files don't have field delimiters, what happens if you remove that property all together?
by chulett
Wed Sep 23, 2009 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ulimit error
Replies: 5
Views: 3429

Betty, please start your own post rather than jump on someone else's. That way you can include all of your information including the error(s) you are seeing, even if they are "the same problem" as this poster's. Also make sure you let us know what flavor of UNIX you are running.
by chulett
Wed Sep 23, 2009 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 50 warning messages
Replies: 13
Views: 11472

Right, the default warning limit is client specific, so can change from user to user and is not something associated or stored with a job. You really need to supply it at run time, either using -warn n option from the command line with 'dsjob' or taking one second to click on the Limits tab in the r...
by chulett
Wed Sep 23, 2009 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a Reserved Word/Variable
Replies: 12
Views: 4161

Perhaps not, as that's not really what those "project level" parameters are meant to be used for. They are meant to parametrize values that would change from project to project or environment to environment but would otherwise be 'static', not values that would change from run to run as yo...
by chulett
Wed Sep 23, 2009 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 50 warning messages
Replies: 13
Views: 11472

OK, then what runs the Sequence job? Whatever warning limit that Sequence job runs with will be passed to all 'child' jobs that it runs.
by chulett
Wed Sep 23, 2009 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 50 warning messages
Replies: 13
Views: 11472

How/where are you running your jobs?
by chulett
Wed Sep 23, 2009 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically define the column names
Replies: 17
Views: 5549

But do you know the maximum number you could get?
by chulett
Wed Sep 23, 2009 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding header and footer records to a output file
Replies: 7
Views: 8376

Your method is fine. Another way is to write them to three separate files and then concatenate them together after job in the proper order.
by chulett
Wed Sep 23, 2009 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job link can't show message
Replies: 9
Views: 2475

Nice question marks. :wink:

Never seen it before, no. What does the Director's Job Monitor show for those links?
by chulett
Wed Sep 23, 2009 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with importing cobol definition
Replies: 3
Views: 1664

As you noted, those BLOB and LONG data types are not supported so your best bet is to stay with an Oracle solution, probably PL/SQL.
by chulett
Wed Sep 23, 2009 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file and Link Row counts
Replies: 5
Views: 1685

ArndW wrote:assuming you created a normal hashed file instead of one with a path.
Hey, everywhere I've been the pathed hashed files have been the normal ones. :wink:
by chulett
Wed Sep 23, 2009 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orachadmin setting issue
Replies: 2
Views: 1068

"orachadmin"? You misspelled the command.
by chulett
Wed Sep 23, 2009 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: write a PX routine
Replies: 2
Views: 1207

Re: write a PX routine

sreddy wrote:read the data in the job1 out put dataset perameteraized that value and pass on to append job2 out filename.
Can you... rephrase... that? It doesn't make much sense at the moment. :?
by chulett
Wed Sep 23, 2009 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting a column of fullname into 2 columns fnm & lnm
Replies: 8
Views: 3084

As noted, Field() will help, but could get a little bit tricky if there are more than two 'words' in the string. Perhaps pull the first field as first name and everything else as the last name in that case.