Search found 53125 matches

by ray.wurlod
Wed Jul 30, 2014 10:13 pm
Forum: General
Topic: dsjob.exe return code -10
Replies: 4
Views: 2864

Not the same issue, because not the same symptoms. Open your own thread if you want help with your particular issue.
by ray.wurlod
Wed Jul 30, 2014 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read zip file
Replies: 6
Views: 2963

Hadoop does not store compressed files in this sense. How are the data being retrieved from Hadoop and written into an archive? Yes, you could use an External Source stage. If you have version 8.7 or later, why not use the Big Data File stage to access data from Hadoop directly? (Acutally it uses Ma...
by ray.wurlod
Wed Jul 30, 2014 10:09 pm
Forum: General
Topic: Need to generate a report of a job with metadata.
Replies: 2
Views: 667

It does. Click the "generate report" tool in the Designer toolbar.
by ray.wurlod
Wed Jul 30, 2014 10:08 pm
Forum: General
Topic: Password Vault
Replies: 8
Views: 4044

Not me. I remember all my passwords (about forty of them, all strong).
by ray.wurlod
Wed Jul 30, 2014 10:07 pm
Forum: General
Topic: Error 126 Loading
Replies: 2
Views: 923

Windows DLLs. (Makes sign to ward off evil eye.) Have you installed any other software with conflicting DLL names?
by ray.wurlod
Tue Jul 29, 2014 3:28 pm
Forum: Site/Forum
Topic: My login inactive
Replies: 17
Views: 22970

You only waited three hours! Not everyone is on line 100% of the time.
by ray.wurlod
Tue Jul 29, 2014 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : Unix command for "repUnkownUTF8" + DataSta
Replies: 6
Views: 2784

That's impossible for us to know. If you re-compile and re-link in the new environment all required files should be created. Otherwise you will need to research what files are needed on YOUR system.
by ray.wurlod
Tue Jul 29, 2014 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read from write into excel file.
Replies: 7
Views: 4259

Don't forget that system table names must end with "$". So, if your worksheet is to be called MySheet, then the table name used in clients (whether DataStage, MS Access or whatever) needs to be MySheet$.
by ray.wurlod
Tue Jul 29, 2014 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read from write into excel file.
Replies: 7
Views: 4259

Does the write sheet exist and have column headings in place? Then you can import its "table definition" just like any other sheet. And write to it, provided that the executing process has write permission to the workbook. Beware that each worksheet is a system table to the ODBC driver for...
by ray.wurlod
Mon Jul 28, 2014 6:55 pm
Forum: General
Topic: Artificial Intelligence and DataStage Certification
Replies: 1
Views: 944

Artificial Intelligence and DataStage Certification

An old blog, I wonder if it's performance is any better now?
http://it.toolbox.com/blogs/infosphere/ ... exam-37272
by ray.wurlod
Mon Jul 28, 2014 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : Unix command for "repUnkownUTF8" + DataSta
Replies: 6
Views: 2784

Welcome aboard.

Check that the PATH environment variable is set appropriately in the new environment, by comparing with the old environment.

PATH is typically finally set in the $DSHOME/dsenv script.
by ray.wurlod
Mon Jul 28, 2014 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update previous records with yesterday's date
Replies: 9
Views: 7004

Today's date is given by Date() therefore yesterday's date is given by Date() - 1 since dates are stored internally as integer offsets from a known day zero. Initialize two stage variables with these values so that they only need to be calculated once. If needed, use Oconv() functions to convert to ...
by ray.wurlod
Sun Jul 27, 2014 7:33 pm
Forum: General
Topic: Named License for DS/QS Designer
Replies: 4
Views: 1560

I support what Vincent says here. Note, however, that Business Glossary author/administrator are named licences - you have to be able to prove during audit that only the named individuals have access. Nearly got caught by this one a couple of engagements ago.
by ray.wurlod
Sun Jul 27, 2014 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header row is missing in ftp enterprise stage
Replies: 3
Views: 2467

Change First Line is Column Names property value to False. Make sure that your metadata allow the header line to be read (even if you have to read each entire line as a single string), rather than be rejected/dropped.
by ray.wurlod
Sun Jul 27, 2014 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of transformer stages affects performance ?
Replies: 20
Views: 8572

If I use transformer stage to just filter records, Is it going to affect the performance as it's not native to DataStage ? On the other hand, the transform operator is a directly compiled component, whereas the filter operator is more like interpreted (not strictly correct, as it uses a pre-built o...