Search found 15603 matches

by ArndW
Tue Feb 07, 2006 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job control aborting
Replies: 2
Views: 2709

I disagree with Ray - the previous post isn't "almost impossible" to read - it is unreadable.

Sumeet, please do a reset in the director and see if you get a log entry with the title "from previous run" and if that contains additional information.
by ArndW
Mon Feb 06, 2006 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE exception in main program: APT_ParseError
Replies: 17
Views: 9708

The error message is very clear, you are using an incorrect schema for your input or output. Did you import the schema file from a text file?
by ArndW
Mon Feb 06, 2006 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Date stored in Shared container
Replies: 8
Views: 1702

Can you put in a condition into your transform stage output derivation for this value which tests for a null or notfound?
by ArndW
Mon Feb 06, 2006 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Caught unknown exception in main program
Replies: 13
Views: 8403

Could you please post your error to this thread?
by ArndW
Mon Feb 06, 2006 1:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Locks and Job is in Run status only
Replies: 8
Views: 1675

Har, 1 is a pretty inefficient transaction size. Do you know why your job was hanging when you used 0? Did you get a job error or see something on the database size? I trust you stopped your job from the Director and not from UNIX; otherwise you might still have sessions connected to the database th...
by ArndW
Mon Feb 06, 2006 1:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TRANSFORMER cf SWITCH speed benchmark
Replies: 8
Views: 2794

Ultramundane - thanks for doing the research work that the original poster didn't :D You were more energetic than I, since the only real learning out of a question such that that can come by actually doing the exercise. Thanks!
by ArndW
Mon Feb 06, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Locks and Job is in Run status only
Replies: 8
Views: 1675

Har, you stated that your job fails, and kwwilliams suggested you reduced your transaction size; then you stated that it is running with a transaction size of 1 but not with a transaction size of 0 (which is no commits until the last row in the job has been process). Did kwwilliams advice help you? ...
by ArndW
Mon Feb 06, 2006 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to access relational DB using SAS Stage
Replies: 2
Views: 726

lstsaur, the way the question was phrased didn't really let anyone give you an answer. SAS is complex. It is a big application residing on some SQL database; just like SAP and PeopleSoft. They discourage direct access to the tables (similar to the DataStage repository ) DataStage is about accessing ...
by ArndW
Mon Feb 06, 2006 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Caught unknown exception in main program
Replies: 13
Views: 8403

The error message you get when running the job will be much clearer than something during validation. Try running it (it's only writing to a sequential so you won't be messing up any data) and see what you get.
by ArndW
Mon Feb 06, 2006 12:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

Deleting and creating small hashed file is much faster than deleting a big one; this is for speed test purposes to see why you job is acting oddly. Always use buffering unless you are forced to turn it off. It is going to be at least an order of magnitude faster. But your performance stats will show...
by ArndW
Mon Feb 06, 2006 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

Try runnign the job once with a limit of 1 row (this will force DataStage to delete and then re-create an empty hashed file). Then run the full data off this empty hashed file and the speed should be roughly linear across the load if your source is a sequential file. Also, are you using buffering to...
by ArndW
Mon Feb 06, 2006 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

How long does your total load take? The row counts shown by the monitor are snapshots and really use too small samples to be reliable. You could put a sequential link out of your transform with a constraint of "MOD(@OUTROWNUM,10000)=0" and output the current time to see if the actual job has linear ...
by ArndW
Mon Feb 06, 2006 9:55 am
Forum: Site/Forum
Topic: Revealing Premium content for the post made upto 28 Feb 06.
Replies: 9
Views: 3996

Techtips might still be free, but doesn't help you much with regards to answering DataStage questions. Some of that forum's answers either originate in this forum or point here. IBM/Ascential's developernet forums remains completely free as well, as is the new Yahoo! one mentioned elsewhere. DSXChan...
by ArndW
Mon Feb 06, 2006 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

What is your source? If you are reading from a database and doing a complex or time-consuming SELECT or ORDER BY then this would be the type of performance I'd expect to see.
by ArndW
Mon Feb 06, 2006 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL server set up with EMC disk array
Replies: 6
Views: 2172

Re: ETL server set up with EMC disk array

A couple of things: ... 2. The disks are apparently set up using striping. One then would not expect read/write IO wait. Striping won't magically remove waits on I/O, just perhaps help spread the load across spindles and controllers. Most EMCs are configured with parity disks as well - is that the c...