Search found 42189 matches

by chulett
Fri Dec 05, 2008 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in Reading xml data through DS PX
Replies: 4
Views: 1173

... and yet the topic is marked as Resolved. Is it? :?
by chulett
Fri Dec 05, 2008 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in restarting the DS Engine
Replies: 22
Views: 7295

What OS? If it's truly not there, I would think a call to your support provider would be in order.
by chulett
Thu Dec 04, 2008 9:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unknown argument error
Replies: 10
Views: 1545

Could you please post your resolution to this problem? It will help future searchers if you close out this issue such that people can see both the problem and the solution.
by chulett
Thu Dec 04, 2008 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CSV column to different columns
Replies: 14
Views: 3576

Do an exact search for "normalize" for quite a number of discussions on the subject. For example: viewtopic.php?t=121718
by chulett
Thu Dec 04, 2008 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to open descriptor file to createNo such file or dir
Replies: 9
Views: 5502

Exactly - when they show up in logs still wrapped in hash/pound signs like that, that means it has no idea they are Job Parameters and hasn't done the substitution. Sometimes you've copied a stage from another job and forgotten to add the parameters it requires, or you've typed the parameter name in...
by chulett
Thu Dec 04, 2008 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unknown argument error
Replies: 10
Views: 1545

Granted, but it equates to true in Oracle, regardless of however much that irks you. All Hail Larry the Great! :lol:
by chulett
Thu Dec 04, 2008 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Tapes to Unix
Replies: 7
Views: 2145

If you can get a tape drive on the DataStage server that reads them, I'd wager you can open the device as a fixed-width Sequential file and read them directly.
by chulett
Thu Dec 04, 2008 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle - DataStage Date issue
Replies: 8
Views: 5611

For that approach you'd need to leave the data type in the job as Varchar so DataStage doesn't try to monkey with it before it goes to Oracle.
by chulett
Thu Dec 04, 2008 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Tapes to Unix
Replies: 7
Views: 2145

Access the Mainframe tape drives directly from your UNIX server? I sincerely doubt that can be done with any tool but don't know for certain. I would assume you'll need to get them dumped to files by the MF folks and then process them in DataStage once they're moved to your UNIX server.
by chulett
Thu Dec 04, 2008 12:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Record Delimiter and Final Delimiter
Replies: 4
Views: 2296

Record Delimiter is what goes at the end of the record. Final Delimiter is what (if anything) goes after the final field but before the Record Delimiter. That's my understanding, anywho.
by chulett
Thu Dec 04, 2008 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Record Delimiter and Final Delimiter
Replies: 4
Views: 2296

Have you read the Parallel Job Developer's Guide section on that? Sequential File Stage / Input Link Format / Record level section, lovely little picture and all there.
by chulett
Thu Dec 04, 2008 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read kernel parameter
Replies: 6
Views: 1364

Sounds like that could be an issue, but I have no clue. Perhaps someone with Solaris experience will pipe up, otherwise open a case with your official support provider.
by chulett
Thu Dec 04, 2008 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle - DataStage Date issue
Replies: 8
Views: 5611

I always use Timestamp for DATE fields in my jobs. Regardless, you need to match the format mask in the SQL, so "DD-MON-YY" (with no zero time) for your current SQL. Or change it to Timestamp.
by chulett
Thu Dec 04, 2008 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read kernel parameter
Replies: 6
Views: 1364

It's trying to validate minimum values... do those exist in the Solaris kernel? :?
by chulett
Thu Dec 04, 2008 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle - DataStage Date issue
Replies: 8
Views: 5611

Then the next question is what does your sql look like? Generated sql for a DATE field would use a TO_DATE(YourField,'YYYY-MM-DD HH24:MI:SS') to convert it properly, hence the suggestion.