Search found 53125 matches

by ray.wurlod
Thu Feb 27, 2014 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COBOL flat file import
Replies: 28
Views: 16574

leathermana wrote:My DataStage resource folks here keep telling me NOT to use CFF and to use Sequential File.
Resist stupid requirements.

Would you accede to a request to tighten a nut using a hammer? It's simply a case of using the right tool for the job.
by ray.wurlod
Thu Feb 27, 2014 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Datatype
Replies: 6
Views: 1994

Learn about the rtype option that goes with these conversion functions to specify how you want the value to be rounded.
by ray.wurlod
Thu Feb 27, 2014 2:12 pm
Forum: General
Topic: DS client can't connect to server (v9.1) after installation
Replies: 12
Views: 7983

Keep working through the Planning, Installation and Configuration Guide There will be more to do than Engine Credentials. On one of the machines where you've installed the client software you should have a desktop shortcut to the jumpstation, from which you can log in to the web console for Informat...
by ray.wurlod
Thu Feb 27, 2014 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Datastage
Replies: 6
Views: 2599

You don't need sequential mode; just make sure that your data are partitioned on your first sorting/grouping key. The rest is managed with a Sort stage (generating a Key Change column) and a Transformer stage (using stage variables). You not only have to detect the change, you also have to detect wh...
by ray.wurlod
Thu Feb 27, 2014 12:30 am
Forum: General
Topic: DS client can't connect to server (v9.1) after installation
Replies: 12
Views: 7983

Welcome aboard. Your system is installed but not configured.

Have you configured your Engine Credentials using web console for Information Server?
by ray.wurlod
Wed Feb 26, 2014 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Datastage
Replies: 6
Views: 2599

First off, highest and second highest based on what? For example, if it's column a and column b, then your expected output is incorrect. Second, why does your expected output not include six rows (highest and second highest from each of three groups)? Perhaps you need to give more thought to exactly...
by ray.wurlod
Wed Feb 26, 2014 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to check the datetime format
Replies: 11
Views: 3530

Did you "test" it with a string that contained an invalid timestamp? :roll:

For example 2013-13-13 13:13:13

or even 2013-02-27T03:13:14 when your default timestamp format string does not include the "T"?
by ray.wurlod
Wed Feb 26, 2014 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link Count issue
Replies: 3
Views: 1342

As noted, the Copy stage that does nothing is optimized out when the score for the job is composed. The Force property mandates that the copy operator be included.
by ray.wurlod
Wed Feb 26, 2014 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to check the datetime format
Replies: 11
Views: 3530

It's not correct. You need to check validity BEFORE attempting to convert.

Is this an interview question? You're the third to have asked it in the last couple of weeks.
by ray.wurlod
Wed Feb 26, 2014 2:54 am
Forum: IBM QualityStage
Topic: Qualitystage standardize stage Creation
Replies: 3
Views: 4609

Why not just add Classification overrides to your xxNAME rule set? Class these words as "O" (organizational name suffix word).
by ray.wurlod
Tue Feb 25, 2014 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link Count issue
Replies: 3
Views: 1342

Welcome aboard. Unless you force it to be compiled in, a Copy stage with one output is likely to be optimized out of the final design. This explains why its output link count is zero - it's simply not actually there! You can see this by including $APT_DUMP_SCORE environment variable as a job paramet...
by ray.wurlod
Tue Feb 25, 2014 4:18 pm
Forum: General
Topic: After-job subroutine returned error: Error 1 returned
Replies: 3
Views: 1195

If an after-job subroutine returns a non-zero value through its ErrorCode argument the job aborts. This is documented behaviour. Since you're using a supplied subroutine, you might like to inspect its code to determine whether it does precisely what you require. If not, clone it, then modify and use...
by ray.wurlod
Tue Feb 25, 2014 4:16 pm
Forum: General
Topic: Unable to query XMETA table
Replies: 2
Views: 1312

Don't know. Do you (have one)?

You might check the installation log to determine whether one was created.

Typically a service account called XMETA is set up.
by ray.wurlod
Tue Feb 25, 2014 3:37 am
Forum: General
Topic: pass environment variable in value file of parameter set
Replies: 1
Views: 870

It is not permissible what you are trying to do. DataStage does not include the ability to use one environment variable with the value of another. You might be able to accomplish it within a sequence, but you'd have to read the values of $LogDir_SYSB and $TempDir_SYSB into, for example, activity var...
by ray.wurlod
Tue Feb 25, 2014 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: isvalid decimal
Replies: 4
Views: 4050

You're wrong. The function you require is IsValid(). BEFORE you attempt any data type conversion.