Search found 53125 matches

by ray.wurlod
Mon Mar 06, 2006 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Repository functions
Replies: 2
Views: 1118

They are internal executables used when DataStage/SQL DDL statements (such as CREATE SCHEMA, CREATE TABLE, etc.) are used. They are not for you to use; their syntax is not documented anywhere,
by ray.wurlod
Mon Mar 06, 2006 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass yesterday's date as parameter
Replies: 9
Views: 2488

More efficient is

Code: Select all

Oconv(@DATE-1, "D-YMD[4,2,2]" : @VM : "MCN")
(I assume this expression is in a job sequence; Oconv() is not available in parallel jobs but is available in job sequences.
by ray.wurlod
Mon Mar 06, 2006 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing cobol copybook to table definition
Replies: 2
Views: 1111

Change your needs. Import it using the Manager or Designer client.
by ray.wurlod
Mon Mar 06, 2006 7:15 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 26045

Some pressure must be applied to IBM to run the classes - especially the advanced class - so we can learn what the expected answers are (rather than the answers we have learned through experience). The certification and advanced class were developed together. I've been on a waitlist for one class fo...
by ray.wurlod
Sun Mar 05, 2006 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Server Restart
Replies: 8
Views: 3300

We kill that process(7623) through root. Aarrggh! Did you check to see whether pid 7362 had any child processes before you killed it? Killing a parent can turn a nohup child into a zombie, and they're almost impossible to get rid of without re-booting UNIX. And killing a process does not, at least ...
by ray.wurlod
Sun Mar 05, 2006 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: move from server to parallel extender
Replies: 4
Views: 1226

I disagree. Given that there's a huge mindset change, having some guidance (maybe a transition class, maybe something else) is far more value than trying to learn out of what are, in reality, just reference manuals for those who have a fundamental understanding of what they're doing.
by ray.wurlod
Sat Mar 04, 2006 9:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substring
Replies: 7
Views: 2345

It will return the original string. If 0 is used as the the argument in Substrings(), it is replaced with 1. It's also documented thus in the DataStage BASIC manual.
by ray.wurlod
Sat Mar 04, 2006 9:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL errors while running batch schedule
Replies: 13
Views: 8681

The original error also mentioned that a file had been created in the &PH& directory in your project (on the server). Is there any useful diagnostic information in that file?
by ray.wurlod
Sat Mar 04, 2006 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Impact Analysis on Columns
Replies: 7
Views: 1939

Nothing, not even Chuck's utility, can save you if you use job parameters for table names. You must - necessarily - learn only that "some table was used in this job".
by ray.wurlod
Sat Mar 04, 2006 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a record from Tab delimited sequential file
Replies: 5
Views: 1288

Scroll right in the Columns grid. You will find a setting called something like "contains terminators" that may help.
by ray.wurlod
Sat Mar 04, 2006 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL errors while running batch schedule
Replies: 13
Views: 8681

It's usually a UNIX kernel parameter named something like NPROC. But the name varies on different UNIXes.
by ray.wurlod
Fri Mar 03, 2006 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiler issues with Enterprise edition
Replies: 12
Views: 3753

That code basically looks OK. Error messages usually appear ahead of the code. Are you SURE you haven't left anything out?
by ray.wurlod
Fri Mar 03, 2006 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS OLEDB Connectivity Issues
Replies: 3
Views: 1077

Welcome aboard :D
Failure to connect via OLEDB is almost always a connection string that's deficient in some way. What error codes/messages are generated?
by ray.wurlod
Fri Mar 03, 2006 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file performance
Replies: 1
Views: 1037

In job 1 and job 2 checking "allow write cache" will help. In jobs 3, 4 and 5 enabling pre-load to memory will help. Don't worry about competition for reading. If you do, then investigate the use of public link caching or even shared caching (read dsdskche.pdf). Thus, as far as the hashed file is co...
by ray.wurlod
Fri Mar 03, 2006 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing weird characters from a column During selection.
Replies: 4
Views: 1310

There are many possible solutions depending on your definition of "corrected". What characters do you want to preserve, and what characters do you want to discard?