Search found 15603 matches

by ArndW
Fri Aug 01, 2008 4:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML stage error in DS v8.0.0.1
Replies: 5
Views: 1228

Have you done a force recompile of the job?
by ArndW
Thu Jul 31, 2008 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

If you were to use a "LIST" instead of a "SELECT" the previous advice would have helped and you would get more assistance on any other errors. What does "LIST HashOther" or "LIST DICT HashOther" produce?
by ArndW
Thu Jul 31, 2008 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compress dataset files
Replies: 6
Views: 2248

With DataSets the actual disk space used for an unbounded Varchar column is smaller than that used in a bounded one.
by ArndW
Thu Jul 31, 2008 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting the Repository Details
Replies: 5
Views: 2108

This internal metadata information is not documented, and I wasn't aware that Infa did that, either. Quite a bit of the internal structure can be seen by looking at the .xml export of a know job but that is all the help that you will get.
by ArndW
Thu Jul 31, 2008 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date Format YYYYMMDD check
Replies: 10
Views: 2488

IsValid() is the correct route to take. What isn't working with that function?
by ArndW
Thu Jul 31, 2008 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: config file check
Replies: 3
Views: 1393

The SIGIOT is the same as SIGABRT. That probably doesn't help you much, though.
If you check the config file or a dataset from UNIX (i.e. try "orchadmin check") do you get the same error message? Do you get the error when designing/compiling or just execution? Have you tried restarting DataStage?
by ArndW
Thu Jul 31, 2008 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backward Compatibility of DataStage
Replies: 2
Views: 1514

One could try to do this with a 7.5x2 client & 7.5x2 Server combination, export the job and "fudge" the version number in order to try to import it at 7.5.1 but I wouldn't trust this method not to cause a problem.

Far better to use the (free) multi-client manager.
by ArndW
Wed Jul 30, 2008 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error compiling transformer in PX Job
Replies: 9
Views: 2902

Sunroy68 - you aren't changing the compiler, just the "compiler options". Depending upon your platform, the standard options will contain something reading "-O" or "-o" and that defaults to some level of optimization. Changing that to "-O0" or "-o0" turns off optimization.
by ArndW
Wed Jul 30, 2008 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtract 1 month from any date given
Replies: 6
Views: 1546

Fixed what, Craig :twisted: (I love revisionist history)
by ArndW
Wed Jul 30, 2008 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs dropping parameters
Replies: 9
Views: 1510

That points to a repository type error, perhaps due to locking or a corrupt job. Can you do a "save as" of your job and then drop/add the parameters without a problem?
by ArndW
Wed Jul 30, 2008 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anybody pls explain one complex job and critical error
Replies: 3
Views: 842

dsd682 - a lot of people here are those conducting technical interviews. Many here, including myself, consider giving out answers to such interview questions to be counterproductive - "cheating", as it were; and certainly won't give out advice of this type. It is much better to tell the truth that y...
by ArndW
Wed Jul 30, 2008 4:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs dropping parameters
Replies: 9
Views: 1510

Is there any regularity to the failures? Time of day or number of iterations or the like?
by ArndW
Wed Jul 30, 2008 3:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs dropping parameters
Replies: 9
Views: 1510

The first or second entry in the job log shows the parameter values that are actually used in the job run. Are those values filled correctly or are they not?
by ArndW
Wed Jul 30, 2008 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error compiling transformer in PX Job
Replies: 9
Views: 2902

The c++ compiler optimization chews up large amounts of resources. For typical transform stage functionality the compiler's optimization won't bring that much performance improvement, so turning off or lowering the optimization level is acceptable.
by ArndW
Wed Jul 30, 2008 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error compiling transformer in PX Job
Replies: 9
Views: 2902

Ignore the other errors, the abort is due to memory. I have had to turn off optimization in large transform stages before.