Search found 53125 matches

by ray.wurlod
Mon Apr 27, 2009 2:31 am
Forum: General
Topic: best practice for adding a new language in datawarehouse
Replies: 3
Views: 1109

Provided your database can handle Cyrillic characters (irrespective of how they're encoded) the existing data warehouse should be OK. No need for translations unless non-Russian speakers need to view the data.
by ray.wurlod
Mon Apr 27, 2009 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: in datastage how to reset a sequence-number-generator
Replies: 2
Views: 1794

Welcome aboard.

Please use proper English on DSXchange; the word you wanted is "please", not "plz" (which isn't a word at all in English).

You can find your answer via Search. A good start point might be an exact search on Updaing SDKSequence (sic).
by ray.wurlod
Mon Apr 27, 2009 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add days to a date in transformer lookup
Replies: 3
Views: 2677

As far as adding days to a date is concerned, this is far easier than you imagine. Get the date into internal format and add the days. Whether you need to convert it back to external format depends on what you want to do with the new date subsequently.
by ray.wurlod
Mon Apr 27, 2009 2:24 am
Forum: General
Topic: Generic job
Replies: 6
Views: 2153

There isn't. DataStage is driven by metadata, not vice versa.

Even RCP means all you're doing is EL, not ETL. If you're going to do transformation, you need to name the source column(s) explicitly.

And there are cheaper tools for doing EL than DataStage.
by ray.wurlod
Sun Apr 26, 2009 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Final Delimiter =End
Replies: 2
Views: 1574

Use \n as the End character.
by ray.wurlod
Sat Apr 25, 2009 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diff between head node and compute node
Replies: 1
Views: 2724

Even your documentation / training about executing DataStage in a grid environment should have differentiated these terms. They are only relevant when you are running under control of some kind of grid management software. Put simply, the head node is where control is exerted; the conductor process ...
by ray.wurlod
Sat Apr 25, 2009 3:01 pm
Forum: General
Topic: finding max date from a file grouping by another column
Replies: 3
Views: 2338

Your timestamp string is in a collatable format. Declare it as Char (or VarChar) and get the max of that.
by ray.wurlod
Sat Apr 25, 2009 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job design-question
Replies: 31
Views: 4631

Using expressions based on the $Counter activity variable of the StartLoop activity.
by ray.wurlod
Sat Apr 25, 2009 2:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job design-question
Replies: 31
Views: 4631

A job to process one range of dates, invoked from a job sequence that loops through the list of fifty dates. The job sequence (inside the loop) can also look after the email.
by ray.wurlod
Fri Apr 24, 2009 8:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job getting hanged
Replies: 1
Views: 979

Begin by suspecting database locks, and search for your exact symptom.

The alert message about fulfilling sort requirements is unrelated.

Also check whether scratch space is becoming filled.
by ray.wurlod
Fri Apr 24, 2009 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Stage extracting rows based on a file of keys
Replies: 3
Views: 869

Self-appointed guru apparently, and giving you a server job solution for a parallel job problem. Neither Transformer stage in parallel jobs allows for more than one input link. You could, however, do what he suggested using a Join stage. Or what Craig suggested, a technique known as a "key buck...
by ray.wurlod
Fri Apr 24, 2009 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs aborted within a category
Replies: 2
Views: 1138

Don't bother. Director can do this for you and produce your report.
by ray.wurlod
Fri Apr 24, 2009 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: runLocally() of the operator failed
Replies: 7
Views: 5553

What is your "Lookup Failed" rule?
by ray.wurlod
Fri Apr 24, 2009 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Auto Partition method in Sort Stage
Replies: 5
Views: 3145

If partitioning is (Auto) you don't get to set the partitioning key at all.

(Auto) on inputs to a Join stage will use all the sort keys as the partitioning key and Hash as the partitioning algorithm.
by ray.wurlod
Fri Apr 24, 2009 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CALLING DATASTAGE JOBS THROUGH UNIX SHELL SCRIPT
Replies: 12
Views: 3486

I have added this path "C:\IBM\InformationServer\Server\PXEngine\bin", in the system variable of 'path' . In windows environmental variables. Still the dsjob command is not recognising! Does i need to change my path? Given that you originally marked your operating system type as UNIX, dar...