Search found 53125 matches

by ray.wurlod
Tue May 09, 2006 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting and
Replies: 1
Views: 617

In the Chapter in the Modify stage in the Parallel Job Developer's Guide is a table showing what data type conversions can happen automatically and which ones require a function. Read that first. Then read through the available data type conversion and cast functions.
by ray.wurlod
Tue May 09, 2006 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 2892 warning
Replies: 2
Views: 909

Look in the file RT_BP1095/JOB.166157985.DT.1400823392.TRANS1 on your server around about the line numbers indicated. Identify the corresponding expressions in your Transformer stage, and add If functions to make sure that zero-valued divisors are properly handled.
by ray.wurlod
Tue May 09, 2006 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parcing file
Replies: 1
Views: 593

Moderator: please remove this duplicate post
by ray.wurlod
Tue May 09, 2006 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parcing in datastage
Replies: 4
Views: 899

Doesn't matter. You can extract the contents of the parentheses with Field(Field(TheString, "(", 2, 1), ")", 1, 1) - possibly having used the Index() function in an If statement to determine whether there are parentheses.
by ray.wurlod
Tue May 09, 2006 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate key was ignored
Replies: 4
Views: 1635

The only way, in server jobs, to suppress warnings of this kind is to pre-check the data so that you do not send duplicate key values to be INSERTed into the table.
by ray.wurlod
Tue May 09, 2006 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp
Replies: 42
Views: 9260

Oconv() is not natively available in parallel jobs.
by ray.wurlod
Mon May 08, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any textbooks or training manuals on DataStage Enterprise Ed
Replies: 4
Views: 1592

Contact me off line. I have some materials that might be appropriate.
by ray.wurlod
Mon May 08, 2006 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is invocation.
Replies: 3
Views: 675

Etymologically at least, invocation could be defined as putting something in the VOC file. This definition is not appropriate in the context of DataStage.
:lol:
by ray.wurlod
Mon May 08, 2006 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the difference between JobSequece and Batch
Replies: 1
Views: 561

It really does look like an interview question. There are three ways to create a job control routine within DataStage server jobs. These are two of them. The other is hand coding, with some templating assistance (if required) from the Designer tool. If you've read this far you've paid for premium me...
by ray.wurlod
Mon May 08, 2006 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the difference between Routine and Function
Replies: 2
Views: 1003

DataStage server routines are of three kinds. A transform function takes one or more arguments and returns a result. It is intended to be invoked from Transformer stages and Routine activities. A before/after subroutine takes precisely two arguments, one input (from the Input Values field), the othe...
by ray.wurlod
Mon May 08, 2006 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User Roles
Replies: 3
Views: 842

Developer role can't touch a protected project.
by ray.wurlod
Mon May 08, 2006 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Internal Tables
Replies: 11
Views: 10842

In Hawk the same repository is used by not only DataStage but also InformationAnalyzer (formerly AuditStage, ProfileStage and some of the QualityStage investigation pieces), QualityStage and MetaStage. And you won't have direct access to the repository at all - there is a layer of services between y...
by ray.wurlod
Mon May 08, 2006 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running jobs from the command prompt?
Replies: 3
Views: 1079

With DataStage you can install a "run only" client license. This has "-DSDIR" as the last part of its authorization code, rather than "-DSDES".
by ray.wurlod
Mon May 08, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any textbooks or training manuals on DataStage Enterprise Ed
Replies: 4
Views: 1592

IBM (the vendor) regularly offers both DataStage Essentials for Enterprise Edition and Advanced DataStage for Enterprise Edition. The former has been re-written recently, in parallel with development of the certification examination. If the people are already competent with server edition, then the ...
by ray.wurlod
Mon May 08, 2006 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp
Replies: 42
Views: 9260

where Create_Date>'#PARMDATE#'

Initialize before invoking the job, either from a job sequence or job control routine, or when prompted for a value.