Search found 581 matches

by Kryt0n
Tue Sep 25, 2012 12:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 ordered targets and transactions
Replies: 6
Views: 4464

Re: DB2 ordered targets and transactions

This and your previous related post got me intrigued, I didn't even know they allowed two input links to a connector so had always split the streams. What's an "end of wave marker"? Generally it's an indicator in real time processing that the full data set has been sent allowing the stages...
by Kryt0n
Mon Sep 24, 2012 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding rules in Message Handler issue...
Replies: 5
Views: 4310

Do you have the option of turning off RCP for the funnel stage? If you don't want these columns on the other side, why have RCP set?

As for the warning messages, are you sure you added the message handler to the job?
by Kryt0n
Mon Sep 24, 2012 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 19 jobs failed with ds_ipcgetnext
Replies: 11
Views: 9388

Re: 19 jobs failed with ds_ipcgetnext

You mentioned all 19 were hitting the same DB, are these the only ones to hit that DB ? If so, your culprit is almost certainly a change on the DB front. How long do the queries take to run in a DB client? What database is it? Is there any load on either the DataStage server or the DB server when tr...
by Kryt0n
Sun Sep 23, 2012 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 19 jobs failed with ds_ipcgetnext
Replies: 11
Views: 9388

What's the timeout setting on the IPC stages? Are your jobs hitting this timeout value?
by Kryt0n
Sun Sep 23, 2012 6:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator - CPU 95% - improve performance
Replies: 6
Views: 4077

Going on the amount of memory being used, would suggest the aggregator is trying to sort the data. Add a sort stage just before the aggregator and set to "don't sort, already sorted" (or add the environment variable APT_NO_SORT_INSERTION?)
by Kryt0n
Wed Sep 19, 2012 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: firstname,middle name, lastname
Replies: 8
Views: 6367

On the assumption that if there is a potential for multiple spaces in the middle

Field(x,' ', 2, DCount(x,' ')-2)

When there are only two fields you may need to do an if first as I'm not sure Field allows 0 for the number of fields.
by Kryt0n
Wed Sep 19, 2012 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Consumed more than 100000 bytes looking for record delimiter
Replies: 8
Views: 17236

That would require 4 byte characters, which the OP wasn't using. Not that I have a good reason as to why 400K should work
by Kryt0n
Mon Sep 17, 2012 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup stage question
Replies: 3
Views: 3510

Or alternatively, if you are actually trying to switch your links around from the descriptions and make the A,B,C,D input your main link, disconnect one of the links first, then on each link, right click and Convert to ... (Reference for current stream/Stream for current reference), then re-connect....
by Kryt0n
Wed Sep 12, 2012 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Excel read returns NULL for dates
Replies: 7
Views: 5279

Are you getting any dates coming through? Or all dates are being dropped? As with what ArndW said, are the first few rows actually dates in Excel? If the ODBC driver had determined the column to be date based on the first x rows, any that aren't explicitly dates in Excel will be dropped, whether the...
by Kryt0n
Tue Sep 11, 2012 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Stage variable into Oracle using Oracle date formats
Replies: 3
Views: 3927

By "stage variable" I assume you mean input parameter, you couldn't possibly pass the stage variable to oracle... When datastage composes the query, what does the query string have for your variable section? Unless it's adjusted in 8.7, I would expect the single quotes to disappear, in 8.5...
by Kryt0n
Tue Sep 11, 2012 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Excel read returns NULL for dates
Replies: 7
Views: 5279

Are you sure they are dates, or string representation of dates?
by Kryt0n
Thu Sep 06, 2012 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need help with getting the first non null value
Replies: 7
Views: 4290

Has this question not come up in the last month or so? Even the sample data looks the same...
by Kryt0n
Thu Sep 06, 2012 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in build output schema from DataSetDef
Replies: 17
Views: 14911

The columns getting a zero length are from the DCLI schema, did you try a describe against these particular tables (with the failing user)? Try do a table import against these tables, no idea if the process DS follows for this is different to when it determines a schema at run time but something to ...
by Kryt0n
Wed Aug 22, 2012 5:44 pm
Forum: General
Topic: Best option to handle connection parameters
Replies: 5
Views: 3936

Personally I prefer parameter sets. The Admin way sounds old school... not saying wrong but does sound a drag... I looked at the data connection way before and didn't really float my boat and as we manage all our details via a database anyway (except passwords!), not the most configurable of options...
by Kryt0n
Tue Aug 21, 2012 7:22 pm
Forum: General
Topic: Server routine to calculate %
Replies: 6
Views: 3103

One adjustment I would make is simplify your access to the "%", you use a count, field and index to get its position when just an Index would do. Something like... Var3=Index(Arg1,'%',1)-1 if Var3>0 Then TempString=Arg1[1,Var3] Var1 = FIELD(TempString,' ',DCOUNT(TempString,' ')) Ans = Left...