Search found 53125 matches

by ray.wurlod
Sun Jun 01, 2008 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting a nullable source to a non-nullable result
Replies: 17
Views: 6320

SQL Functions are always assumed to be able to deliver null (and therefore to be nullable). Short of using an intermediate temporary table I don't believe there is any solution. You could use a message handler to demote the message to informational.
by ray.wurlod
Sun Jun 01, 2008 2:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer issue
Replies: 30
Views: 8541

I stand by my solution and claim that no "other" solution is required to meet the need described in pat_raman2000's two posts.
by ray.wurlod
Sun Jun 01, 2008 2:13 pm
Forum: General
Topic: Remove duplicates in Datastage MVS edition
Replies: 8
Views: 3621

Yes, you do need to stage the data. A flat file is as good a way as any.
by ray.wurlod
Sun Jun 01, 2008 2:12 pm
Forum: General
Topic: Transfer Data Dynamically
Replies: 2
Views: 1059

You can not do this in a server job.

You could achieve it with routines that employ BCI functions (which mimic ODBC API functions).
by ray.wurlod
Sun Jun 01, 2008 2:11 pm
Forum: General
Topic: Sequential Files, Timestamps, Null values and Asterisks
Replies: 26
Views: 15059

No. You must use environment variable names as documented in the DataStage or Orchestrate manuals. No others will be recognized (unless in your own expressions - and there you can not affect "buffering, debugging, partitioning, reporting and so on").
by ray.wurlod
Sun Jun 01, 2008 2:08 pm
Forum: General
Topic: Best way to abort a job
Replies: 13
Views: 5398

My usage of "commit" is the standard, (almost) universally understood one.
by ray.wurlod
Sat May 31, 2008 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer issue
Replies: 30
Views: 8541

Then you must build this in - "automatic" handling only applies when a job (or other) activity actually fails - aborts. Take a Warning trigger from your job activity and run it into a Routine activity that invokes UtilityFatalToLog() routine.
by ray.wurlod
Sat May 31, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Porblem with config file
Replies: 9
Views: 2716

For whatever reason your system is having a problem with the node name "issaq". Is it defined in the hosts file?
%WINNT_ROOT%\System32\Drivers\Etc\hosts

In a CMD shell on the server can you ping issaq successfully?
by ray.wurlod
Sat May 31, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning
Replies: 5
Views: 1631

Possibly. Not if the constraints involve mutually exclusive conditions (that is, any one input row can be directed to only one table).

Partitioning is not relevant to this question; partitioning only ensures that any one row will be processed on only one processing node.
by ray.wurlod
Sat May 31, 2008 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete jobs/categories from commanline
Replies: 9
Views: 3458

No. That would certainly cripple the job, but would not delete it. There are many other entries for a job, including in DS_JOBOBJECTS, VOC and all the job-specific repository tables DS_TEMPnnn and RT_*nnn and their corresponding file dictionaries, not to mention dependencies that might be recorded i...
by ray.wurlod
Sat May 31, 2008 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automated sequence numbers
Replies: 12
Views: 3801

Why not just use @OUTROWNUM system variable, perhaps added to a constant (starting value) supplied as a job parameter?
by ray.wurlod
Sat May 31, 2008 4:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting a nullable source to a non-nullable result
Replies: 17
Views: 6320

You say you have five columns, you show me a record schema with three columns, and that you are discarding two of those. Why not select just the one column that you need? To get rid of the error, just do as it says - add some null handling. I suspect there is more to your job design than you are tel...
by ray.wurlod
Sat May 31, 2008 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: arabic data reading problem
Replies: 10
Views: 5388

There is no dsenv file on Windows-based DataStage servers. You can set up environment variables using Control Panel > System > Environment.
(Depending on which version of Windows, Environment may be a command button on one of the tabs in the System dialog.)
by ray.wurlod
Sat May 31, 2008 4:16 pm
Forum: General
Topic: Sequential Files, Timestamps, Null values and Asterisks
Replies: 26
Views: 15059

Default values are coded within the osh executable and used if the environment variable is not set. If the environment variable is set (anywhere) then its value takes precedence over the default value.
by ray.wurlod
Sat May 31, 2008 4:14 pm
Forum: General
Topic: Remove duplicates in Datastage MVS edition
Replies: 8
Views: 3621

Welcome aboard. Add a sort ahead of the Aggregator stage, sorting by the grouping (duplicate identifier) keys. You can use a Sort stage or, if the data are coming from a relational table, specify the ordering in the extraction. On the Output page General tab, select the Group By option rather than t...