Search found 53125 matches

by ray.wurlod
Tue Apr 01, 2008 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

So what is the file dictionary for THAT ?
by ray.wurlod
Tue Apr 01, 2008 3:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

The table whose file dictionary you listed was "ResidentialMaturityCode" yet the name you give in the SQL query is "pilresidmatlovmap". I daresay that the query parser is complaining about a non-existent table name. This is borne out by the fact that it gave up parsing immediately after the SELECT t...
by ray.wurlod
Tue Apr 01, 2008 2:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

Are the columns in precisely the same order in all jobs and all stages? Navigation in hashed files is by position, not by column name. This includes the order within the key column. Note: correct terminology is "hashed" file, not "hash" file. What columns have you defined in the job that is executin...
by ray.wurlod
Tue Apr 01, 2008 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with lookup
Replies: 4
Views: 1106

CHAR fields are padded with the character specified in the environment variable APT_STRING_PADCHAR. That would be a good place to start looking. Compare the DSParams files in each project.

You might also compare the uvconfig files if the dev and QA environments are on separate machines.
by ray.wurlod
Tue Apr 01, 2008 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with lookup
Replies: 4
Views: 1106

What is different between dev and QA environments? Clearly "nothing" is not the correct answer. Search thoroughly.
by ray.wurlod
Tue Apr 01, 2008 1:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with lookup
Replies: 4
Views: 1106

This is the fourth thread you have opened with this question. Do you think that will help? The only things it will help to do are boost your post count and boost the annoyance factor for those of us who have to read them. If you need it solved urgently, involve your support provider - pay them the ...
by ray.wurlod
Tue Apr 01, 2008 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: No match for pname: db_cs, which:
Replies: 7
Views: 2800

PWD has nothing to do with passwords. It serves the function "print working directory"; it contains the pathname of the working directory.

Is the job using a Sequential File stage to read the source file? How are you attempting to "select two fields" from the file?
by ray.wurlod
Tue Apr 01, 2008 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parsing of the record
Replies: 4
Views: 1011

What do you mean, specifically, by "parse"?

Only with that knowledge could we proffer cogent advice.
by ray.wurlod
Tue Apr 01, 2008 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading the DSJobReport file
Replies: 10
Views: 3698

Field(Name.$CommandOutput, @FM, 2, 1) returns the second line of the command output from the Execute Command activity called Name.
by ray.wurlod
Mon Mar 31, 2008 11:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UniVerse SQL - List Job Parameters
Replies: 13
Views: 7539

I've had a chance to fiddle a little with this, and have not yet found a good solution without adding to the dictionary (or VOC). ASSOC.WITH isn't really amenable in an SQL query on more than one table, but even using the other query language (RetrieVe) I am not having a lot of luck.
by ray.wurlod
Mon Mar 31, 2008 10:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: code merging in datastage
Replies: 2
Views: 1158

Stop the production team from making changes. Production environments are not where changes are made, in a professionally organized software development life cycle. Make the changes in development, test them thoroughly, and only then promote the changes into production. Threaten the "production team...
by ray.wurlod
Mon Mar 31, 2008 10:55 pm
Forum: General
Topic: IBM to Acquire Informatica
Replies: 12
Views: 4882

dsdoubt wrote:Great patience to write whole lot information!!!

Thanks, but I can't really claim credit. Almost all of the words are IBM's announcement about acquiring Ascential, with true numbers plucked from Informatica's web site (Company page).
by ray.wurlod
Mon Mar 31, 2008 8:35 pm
Forum: IBM QualityStage
Topic: QS Stages showing with Plug in icons
Replies: 6
Views: 4202

I am surprised by this result. What is supposed to happen if you do not have QualityStage licensed is that the stage types for QualityStage functionality are entirely disabled.
by ray.wurlod
Mon Mar 31, 2008 8:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going to peek stage........
Replies: 27
Views: 6606

Become a premium member. It is not expensive, at less than 30c (Rs12) per day, and you will - among other things - be able to read the entirety of the five premium posters' posts. All revenue from premium memberships is devoted to defraying the hosting and bandwidth costs incurred by DSXchange so, ...
by ray.wurlod
Mon Mar 31, 2008 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP a Zip File
Replies: 2
Views: 1006

Not really. FTP stage streams the rows directly into the DataStage job. You are better advised to create a script to transfer the file and unzip it locally. (Or you could use your unzip command as a filter command in a Sequential File stage.)