Search found 42189 matches

by chulett
Fri Mar 07, 2008 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Archival Problem
Replies: 3
Views: 1231

Define 'archive'. What do you want to happen to the old file(s)? Or not, just noticed this is suddenly 'Resolved'. :?
by chulett
Fri Mar 07, 2008 12:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Start Loop Activity
Replies: 7
Views: 2647

Is your delimiter, when you 'cat d3.txt', in fact a comma?
by chulett
Fri Mar 07, 2008 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Standalone Stored procedure stage execution
Replies: 7
Views: 2785

I would think that, in a PX job, a Row Generator would be the most appropriate starting point. With no equivalent in Server to that stage, we use a Transformer. However, you could use either I would imagine. [shrug]
by chulett
Thu Mar 06, 2008 9:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job control process (pid 2633746) has failed
Replies: 3
Views: 1214

I usually seem to see that when someone kills the pid in question.

What's your 'WORKAROUND'? :?
by chulett
Thu Mar 06, 2008 9:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Start Loop Activity
Replies: 7
Views: 2647

Yes, it is much happier with a comma delimited list. An "ls -m" will generate it for you automagically.
by chulett
Thu Mar 06, 2008 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in writing log summary to a file
Replies: 13
Views: 4295

Don't do it 'after job', consider doing it outside your job. For example, a job that gathers this for all jobs or a series of jobs rather than having to put this call in every job.
by chulett
Thu Mar 06, 2008 8:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Start Loop Activity
Replies: 7
Views: 2647

What did you put in the Start Loop's Delimited Values box? That's where your command output goes. The job should use StartLoopName.$Counter for the filename so it gets one 'off the stack' each iteration.
by chulett
Thu Mar 06, 2008 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character not getting loaded in Oracle through ODBC
Replies: 3
Views: 1954

First thing would be to verify that your character actually exists in the target character set. If your source and your target use the same character set, you can just load from one straight to the other, otherwise a conversion needs to happen. When the source character set (controlled by the job se...
by chulett
Thu Mar 06, 2008 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in writing log summary to a file
Replies: 13
Views: 4295

You'd need to switch to getting full log details rather than a 'summary'. That means DSGetLogEntry and a lot more work on your part.
by chulett
Thu Mar 06, 2008 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character not getting loaded in Oracle through ODBC
Replies: 3
Views: 1954

If that was an apostrophe (hex 27) it would have loaded fine. I've had the same issue in the past when the source is something like Word and you get them dang 'smart quotes' rather than a simple apostrophe.

What is your NLS_LANG setting for your database?
by chulett
Thu Mar 06, 2008 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some advise on how to merge data in a server job.
Replies: 12
Views: 3138

Sounds like the parent data should go into a hashed file and then the other 2 stream in and you do a lookup based on matching keys. Output the 'merged' data to a sequential file.
by chulett
Thu Mar 06, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Standalone Stored procedure stage execution
Replies: 7
Views: 2785

Re: Standalone Stored procedure stage execution

VCInDSX wrote:If i can execute the procedure without any additional stages, that would be best

You can't in a job. Something must drive it.
by chulett
Thu Mar 06, 2008 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Version:How toupgrade from 7.5.1 server to 7.5.2?
Replies: 6
Views: 2342

Sounds like you need to get back in touch with IBM.
by chulett
Thu Mar 06, 2008 2:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date internal format
Replies: 3
Views: 978

Depends on the external format your timestamp is in. If it is ISO like - "YYYY-MM-DD HH24:MI:SS" - then you can compare those strings directly.