Search found 459 matches

by T42
Mon Mar 07, 2005 7:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameter passing
Replies: 3
Views: 1262

bah. "touch" does the job.
by T42
Mon Mar 07, 2005 7:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage running on windows 2003??
Replies: 9
Views: 2464

DataStage 5.2 is NOT supported on W2k3. Usually, Ascential hold back their support when they have one of the following 2 situations: 1. It was never tested on that platform. 2. There are well known problems with that platform for that version. Nuff said. I strongly recommends upgrading to 7.5.1 when...
by T42
Mon Mar 07, 2005 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before-SQL - To be committed only after the job finishes
Replies: 6
Views: 1964

I would not recommend using the DB2 Enterprise stage. For one thing, if you run it on multiple nodes, there's no real control on the before-stage/after-stage routines, and it get run multiple times. This may be the actual cause of your weird behavior. Suggestion: Use Before-Job and After-Job to call...
by T42
Mon Mar 07, 2005 7:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Trannsformer column dropped
Replies: 12
Views: 8007

EVERYONE! Pay attention. APT_CombinedOperatorController,0: Field 'field name' from input dataset '0' is NULL. Record dropped. If you are getting the above message, you are NOT programming correctly in DataStage EE. This is NOT a case of... It's quite common and we used to get this warning in our job...
by T42
Mon Mar 07, 2005 7:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting - ds_ipcgetnext - timeout waiting for mutex
Replies: 4
Views: 3254

Are you attempting to run several jobs calling the same container?
by T42
Mon Mar 07, 2005 7:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in jobs with Funnel Stage
Replies: 5
Views: 2090

There may be a bug with Director. What version of DataStage are you using exactly? When you show the log, are you "Filter Entries" to the last previous run? Try View | Show All if the above is the case. You can also view the job running on the command line (Do a "ps -ef |grep [usernam...
by T42
Sun Mar 06, 2005 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell script
Replies: 10
Views: 4822

With DataStage Enterprise Edition, you are now responsible for one of the most powerful tools created by people who originally invented the Thinking Machines. That idea failed due to lack of software, so they went into software. Ascential is now trying to reduce the amount of work you need to be abl...
by T42
Sat Mar 05, 2005 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell script
Replies: 10
Views: 4822

DataStage can run without any invocation of shell scripts by yourself. They do create their own internal shell scripts (particularly in EE -- take a look at what code is produced in the project folder). However, if you try to edit those files, Bad Things [tm] will happen. There are situations where ...
by T42
Fri Mar 04, 2005 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Stability over Longer Run Times
Replies: 5
Views: 1870

DataStage (especially with EE) are VERY solid with their memory usage. Memory leaks are VERY rare out in the field, and jobs could practically run for years if you let it. However, do pay attention to what Ray said. Do you REALLY want to let DataStage, a pure ETL box, to handle scheduling duties? Wh...
by T42
Fri Mar 04, 2005 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ASCII to EBCDIC
Replies: 4
Views: 3205

Warning: Import consumed only 107bytes of the record's 109 bytes (no further warnings will be generated from this partition) Ensure that your metadata compromise of 109 bytes. DataStage is trying to read in all the way to the new record toggle (newline), and noticed that there's 2 extra bytes unacc...
by T42
Fri Mar 04, 2005 11:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ten most important things ...
Replies: 2
Views: 1374

Rule #1: Read DSXchange. Rule #2: Use search. Rule #3: Ask questions. Rule #4-#10: Bow to me. :lol: Seriously, this is something you can ask Ascential to provide a copy of. We have our own perspectives of how things should be done. Ken Bland can attest to that! But above all, we all learns from our ...
by T42
Fri Mar 04, 2005 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation issue
Replies: 2
Views: 1477

Actually, it depends on the compiler itself. One user may actually means one usage at a time.

In other words, only 1 C code is compiled at a time.

You would notice an improvement on compile time if you reduce/eliminate transformers. However, runtime benefits may hurt.
by T42
Fri Mar 04, 2005 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retruning strings (char pointers) from C routines
Replies: 10
Views: 5818

Do not use the standard C libraries.

Use the Orchestrate API libraries. APT_String, et cetera. This will help a lot on garbage collections.

Bug Ascential for a copy of the Orchestrate manuals.
by T42
Fri Mar 04, 2005 10:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to call an external C routine from a Parallel Routine
Replies: 10
Views: 8327

Did you "distribute_component" the library?
by T42
Fri Mar 04, 2005 10:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup step:not enough step
Replies: 8
Views: 4110

Are you using AIX? If so, there is a memory limitation issue you have to deal with. Read this: http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.aix.doc/aixprggd/genprogc/lrg_prg_support.htm There are a number of solutions for the above problem. If you are using other generic...