Search found 42189 matches

by chulett
Tue Aug 05, 2008 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: etl-tools.info - datastage-tutorial- scd2-implementation?
Replies: 6
Views: 4567

:!: Start a new post. Include the details of your job and state your problem there.
by chulett
Tue Aug 05, 2008 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of XML file to CSV file
Replies: 7
Views: 2553

As noted, use a Server job for this task.
by chulett
Mon Aug 04, 2008 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Warning: Import consumed only 27bytes of the re
Replies: 5
Views: 4380

You need to determine what that character actually is - the ASCII value. Do you have a hex editor/viewer on your server? Can you do an "od -x" (or something similar) on the file? Also, where do you see this "control character"? End of every record? Once at the end of the file? Something else entirely?
by chulett
Mon Aug 04, 2008 9:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to extend sys.dba_extents Oracle Enterprise
Replies: 11
Views: 3996

Re: Unable to extend sys.dba_extents Oracle Enterprise

krishobby wrote:The jobs have been working fine till couple of days back and suddenly we are getting this issue

Find out what changed. Obviously something did.
by chulett
Mon Aug 04, 2008 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increasing rows per transaction USING ODBC
Replies: 5
Views: 2706

1. Leave the Array Size at 1.
2. Use something other than DataStage, say a native Sybase tool.
by chulett
Mon Aug 04, 2008 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

mystuff wrote:a) But I am not able to cd (change directory) to &HOLD& or read the MyOutput file.

Why not? Is it because you are not escaping the "&" meta characters and so they send you into the background? Try:

Code: Select all

cd \&HOLD\&

as one way to get in there.
by chulett
Mon Aug 04, 2008 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage error
Replies: 9
Views: 2021

Ok, so it's the "only" message but is that the complete message? I can't believe it literally ends with "[ODBC SQL Serv..". Can you please try double-clicking on it to get an Event Detail dialog box, then clicking "Copy" and then paste the result into a post here?
by chulett
Mon Aug 04, 2008 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage error
Replies: 9
Views: 2021

Post the entire message. Double-click on it to see it.
by chulett
Mon Aug 04, 2008 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2134

Exactly... just pass in the Client or perhaps "Logic" number as an argument at runtime and have them all coded in. That's as dynamic as you're gonna get.
by chulett
Mon Aug 04, 2008 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verifiying the data
Replies: 2
Views: 967

Put the child data into a hashed file with all three columns as Keys. Do two lookups against the hashed file using the parent data, one for "S" and one for "B". Construct the output based on the result.
by chulett
Mon Aug 04, 2008 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Verifying data and Filtering
Replies: 3
Views: 729

All you needed to do was answer the question and then our dear Moderator would have moved the post, since it looks like the winning answer is "Server".

And you really shouldn't mark this as a "workaround" when it isn't anything of the sort.

ps. For anyone wanting to help, please do so here:

http://www.dsxchange.com/viewtopic.php?t=121104
by chulett
Mon Aug 04, 2008 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Verifying data and Filtering
Replies: 3
Views: 729

Please verify job type - Server as marked or PX based on the forum we are in? :?
by chulett
Mon Aug 04, 2008 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to extend sys.dba_extents Oracle Enterprise
Replies: 11
Views: 3996

So now you know what changed, in spite of the DBAs saying nothing had - your user's grants.
by chulett
Mon Aug 04, 2008 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increasing rows per transaction USING ODBC
Replies: 5
Views: 2706

TEXT data types are not officially supported and you must leave the array size at 1 to have a hope of it working. Transaction Size should be an even multiple of Array Size, not the other way 'round.