Search found 53125 matches

by ray.wurlod
Fri May 18, 2007 12:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: distinguish a particular type of warning
Replies: 4
Views: 5875

What a singluarly cumbersome approach! For example, why not use DSGetNewestLogId() and filter for warnings? It will return 0 if there are none. Or process the dynamic array returned by DSGetLogSummary() with a REMOVE statement in a loop. That way one can quickly filter on severity for each and every...
by ray.wurlod
Fri May 18, 2007 12:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with Splitting of file
Replies: 6
Views: 1937

That's not many, unless each is Megabytes in size.
by ray.wurlod
Fri May 18, 2007 12:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open job
Replies: 9
Views: 3022

Welcome aboard.

Your advice is poor. One first needs to establish that the lock is not validly held - for example someone else may be editing that job.

Arbitrarily releasing locks is "worst practice" and can lead to lost work.
by ray.wurlod
Fri May 18, 2007 12:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help Required: Sequence Failure
Replies: 6
Views: 1496

You've missed the point. An OK trigger will fire ONLY if the job finished with no warnings. Zero. If you want execution to continue if there are warnings you need either an additional, Warning, trigger into the Sequencer from each Job activity, or to replace the OK trigger with a Custom trigger that...
by ray.wurlod
Thu May 17, 2007 9:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata API loading Data issue
Replies: 5
Views: 1568

I meant your parallel job configuration - the one specifed by APT_CONFIG_FILE. This is totally irrelevant for server jobs. How many nodes are there, and where are they?
by ray.wurlod
Thu May 17, 2007 9:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open job
Replies: 9
Views: 3022

The only way you can "do it unix" (sic) is to re-boot the server, which is overkill. You need, using DataStage tools, to identify the owner of the lock, determine whether the lock is validly held and - only if it is not validly held - unlock it. If it is validly held you should negotiate with the cu...
by ray.wurlod
Thu May 17, 2007 9:43 pm
Forum: General
Topic: Best way to process a list and do perform SQL one at a time
Replies: 14
Views: 5264

Code: Select all

Left(ExecuteCommand.$CommandOutput, Len(ExecuteCommand.$CommandOutput) - 1)
by ray.wurlod
Thu May 17, 2007 7:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata API loading Data issue
Replies: 5
Views: 1568

What is your configuration? Are the Teradata libraries accessible to all nodes? In particular, is libcliv2.so accessible (execute permission) and findable through your shared library search path?
by ray.wurlod
Thu May 17, 2007 7:08 pm
Forum: General
Topic: Is anyone using DataDirect XML products with DataStage?
Replies: 10
Views: 2613

We're not gonna take it!
8)
by ray.wurlod
Thu May 17, 2007 5:52 pm
Forum: General
Topic: Is anyone using DataDirect XML products with DataStage?
Replies: 10
Views: 2613

Very few (none) of my clients uses XML in their ETL strategy.
by ray.wurlod
Thu May 17, 2007 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborted. Msg is "Could not find Input field"
Replies: 1
Views: 1184

Could be you're not looking in the log for the correct job.

The error messages are being generated by a Transformer stage, but there is none in your posted job design.

I would suggest that you've left some old derivations in the poorly named Transformer_165 stage.
by ray.wurlod
Thu May 17, 2007 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Re-Start DSengine
Replies: 14
Views: 5321

Do you feel that that would be a popular - even acceptable - "solution" in a production environment?

I don't.
by ray.wurlod
Thu May 17, 2007 5:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset
Replies: 1
Views: 756

Yes, but they won't work unless the pathnames for every resource disk are identical. The pathnames of the data files are stored in the control file (myDataSet.ds), but not in a text format.

And the version of DataStage must be identical, and the parallel job configuration effectively identical.
by ray.wurlod
Thu May 17, 2007 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Command line utility for re-generating wrapped-stages
Replies: 2
Views: 699

No but, if you enable server side tracing and then do it (open Manager and press Generate), you will be able to discern what happens, and possibly then to emulate the same in your script.
by ray.wurlod
Thu May 17, 2007 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help for "Fatal Error: Not a v1.1 type: decimal[20
Replies: 9
Views: 2533

Time to mark this thread as Resolved, then.

Why was APT_AUTO_TRANSPORT_BLOCK_SIZE ever set to anything but False?
Transport blocks are only relevant for transmitting fixed-length records.