Search found 53125 matches

by ray.wurlod
Thu Jul 26, 2007 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling a Quality stage job from the sequencer
Replies: 3
Views: 888

Silly me. I assumed you had done that. :wink:
by ray.wurlod
Thu Jul 26, 2007 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for some advice on Preload file to memory
Replies: 24
Views: 7071

The explanation given in the manual appears quite clear to me. You do need to regenerate DataStage after changing uvconfig - did you do that? And there will be an extra daemon (the disk cache manager daemon) running if you enable public shared cache by this means. I can't tell you whether 512 will b...
by ray.wurlod
Thu Jul 26, 2007 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job in Running State
Replies: 19
Views: 5972

Re: Job in Running State

We have a server job which runs daily. Normally it takes approx 7 minutes to complete. But the yesterdays run of this job is still in running state. No warnings whatsoever. We are not accessing any Databases. Only seq files and hash files. All the files required are in place and have the proper rig...
by ray.wurlod
Thu Jul 26, 2007 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash lookup - Values < 1
Replies: 3
Views: 1030

Is this when you do a View Data on the hashed file? Can you list the dictionary of the hashed file, at least for the fields in question, and post the results here?
by ray.wurlod
Thu Jul 26, 2007 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having problems returning data from an oracle stored proc.
Replies: 1
Views: 640

Welcome aboard.

The first thing you need to do is post your question in the parallel jobs forum. By posting it here you'll get server job answers, which won't help at all, and will be misleading.
by ray.wurlod
Thu Jul 26, 2007 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Teradata syntax
Replies: 5
Views: 1884

Does Teradata allow for SELECT in the SELECT clause?

Code: Select all

SELECT (SELECT COUNT(*) FROM table) AS COUNTS, 'sourcename' FROM table;
by ray.wurlod
Thu Jul 26, 2007 1:35 pm
Forum: General
Topic: libraries available
Replies: 6
Views: 1643

It's a very vague question you've asked! There is a "programming" chapter in each of the Developer's Guides, but beyond that there doesn't appear to be much apart from what you can learn by looking in bin and lib directories. This site is more geared to specific questions such as "is there a way to ...
by ray.wurlod
Thu Jul 26, 2007 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Additional sequential warnings
Replies: 12
Views: 4901

Probably the only solution to this particular requirement is to read the file as a single VarChar column and parse it yourself within the job.
by ray.wurlod
Thu Jul 26, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Status from UNIX
Replies: 3
Views: 1355

One of the report options in the dsjob command.
by ray.wurlod
Thu Jul 26, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvopen() - Unable to read file header
Replies: 2
Views: 2310

Lack read permissions? Corrupted hashed file header?
by ray.wurlod
Thu Jul 26, 2007 12:43 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: DS Admin's please help me
Replies: 8
Views: 4749

I have no idea what you're talking about, because I have yet to have any hands-on experience with version 8.
by ray.wurlod
Wed Jul 25, 2007 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling for dates/timestamps in MOdify Stage
Replies: 13
Views: 9904

What is your default date format string (set in Administrator, on Parallel tab)? The date format you specify in handle_null must match this string.
by ray.wurlod
Wed Jul 25, 2007 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Read/Write
Replies: 2
Views: 881

... which means that all the nodes named in the configuration file with which it was created must be accessible under the new configuration file's regime. The control file (blah.ds) contains the locations of the data files, though not readily in human-readable format.
by ray.wurlod
Wed Jul 25, 2007 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to detect 'fatal' from job in calling sequence
Replies: 12
Views: 3545

Yes.

The job sequence did finish successfully. What is its STATUS (from Status view)?
by ray.wurlod
Wed Jul 25, 2007 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sripping Null Char in DB2
Replies: 2
Views: 1311

DataStage.

Code: Select all

Convert(Char(0), " ", InLink.TheString)


UNIX

Code: Select all

tr '\0' ' ' < infile > outfile