Search found 53125 matches

by ray.wurlod
Wed Mar 28, 2007 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler : Why use it.. and how to handle warnings
Replies: 20
Views: 6895

You can code for this explicitly with a Custom trigger of the form JobActivity.$JobStatus <> DSJE.RUNOK - send this link into a Routine activity that invokes UtilityAbortToLog().
by ray.wurlod
Wed Mar 28, 2007 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML datatype
Replies: 3
Views: 1557

Upgrade to DataStage version 8.0, where there is better integration with the DB2 version 9 data types. The XML data type is new to version 9 of DB2, so was not known about when earlier versions of DataStage appeared. Whether the new functionality extends to server jobs I am unsure.
by ray.wurlod
Wed Mar 28, 2007 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character Conversion Types, Special Chars
Replies: 1
Views: 686

Try ISO-8859-1
by ray.wurlod
Wed Mar 28, 2007 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file error
Replies: 2
Views: 733

Not possible in server edition without some form of pre-check - either in a before-job subroutine (but you still only have the option to abort the job) or in a controlling job sequence.
by ray.wurlod
Wed Mar 28, 2007 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to reject the rows that not in the parent table???
Replies: 22
Views: 5555

You can also click on the "open book" tool on the toolbar, choose Log from the View menu, or right click on the job and choose View Log from than menu.
Invoke the filter using Ctrl-T or from the right click menu.
by ray.wurlod
Wed Mar 28, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IF THEN END IF
Replies: 3
Views: 1535

There is no END statement, but there MUST be an ELSE clause - the expression MUST produce a value whether its test expression is true or not.
by ray.wurlod
Wed Mar 28, 2007 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Settings
Replies: 3
Views: 961

Define "performance" in this context.

Rows/sec is meaningless. A well-sized hashed file will best handle the volume of data for which it is tuned, or a subset thereof. But it will still efficiently handle larger volumes, by automatically managing its "table space" - hence the name "dynamic".
by ray.wurlod
Wed Mar 28, 2007 6:47 am
Forum: General
Topic: Link Count
Replies: 27
Views: 10932

... and that incremental count is the row count for rows processed thus far, which is apparently what you seek. In the final row it will contain the total number of rows processed by that Transformer stage. You can run it through an Aggregator stage with its "Last" aggregate function to get a single...
by ray.wurlod
Wed Mar 28, 2007 6:43 am
Forum: General
Topic: ORABULK and ORAOCIBL difference and when to use
Replies: 9
Views: 2569

YOU don't need to use sqlldr in automatic mode, but the stage process does invoke sqlldr (automatically). The implications for Oracle client software and environment variables should therefore be apparent.
by ray.wurlod
Tue Mar 27, 2007 9:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance while loading target database table
Replies: 30
Views: 10134

Why have you set the array size so large? Array size is the number of rows sent at a time. Therefore, until that many rows have been processed, no rows will be sent. But the clock is running, so your rows per second (a totally meaningless metric - search the forum for reasons) will be severely under...
by ray.wurlod
Tue Mar 27, 2007 9:51 pm
Forum: General
Topic: Reducing duplicate streams and databases
Replies: 5
Views: 1666

A great start point is developing a business glossary - centralizing (and getting agreement upon) the definitions of business terminology. Only when you have this in place, and agreed to, does it make any sense to go forward with designing a centralized model. I suggest that you look at IBM's busine...
by ray.wurlod
Tue Mar 27, 2007 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error connect to db2 in prompt
Replies: 5
Views: 4925

If your symptoms are as Eric describes, make sure that umask is set to 002 in dsenv, and that both users belong to the group associated with the project directory.
by ray.wurlod
Tue Mar 27, 2007 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Array size
Replies: 6
Views: 1569

Is this for all plug-in stages, or a specific one? If I read that description accurately, it says you can set it to whatever you like, but an array size of 1 will actually be used. So your setting it to 1000 has possibly simply been ignored. Perhaps you could have your DBA trace the operation to det...
by ray.wurlod
Tue Mar 27, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi instance Job log gets truncated
Replies: 3
Views: 1105

How did you try to override the auto-purge parameters with a "date"? Do you mean "number of days"? Did you check the "Enabled for this job" check box?
by ray.wurlod
Tue Mar 27, 2007 12:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting up different config nodes for different jobs.
Replies: 6
Views: 2025

Welcome aboard. :D In your job parameters add $APT_CONFIG_FILE (use Add Environment Variable). Set its default value to the special token $PROJDEF. Change this parameter value when submitting a run job request to choose the configuration file that best meets the job's needs. And, obviously, organize...