Search found 53125 matches

by ray.wurlod
Tue Apr 27, 2010 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server routine vs parallel routine
Replies: 14
Views: 9992

Parallel Job Developer's Guide - search in it for "out of band null".
by ray.wurlod
Tue Apr 27, 2010 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle timestamp(6) conversation problem!!
Replies: 8
Views: 4427

Only changing the default date picture in Oracle and matching that. There's nothing more you can do in DataStage.

Resist stupid requirements!
by ray.wurlod
Tue Apr 27, 2010 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server routine vs parallel routine
Replies: 14
Views: 9992

Read the manual. Null is represented internally as a byte with only its most singificant bit set.
by ray.wurlod
Tue Apr 27, 2010 4:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to compile the routine
Replies: 3
Views: 1619

Compile it with your C++ compiler. There should be a Compile control in the Visual Studio suite.
by ray.wurlod
Tue Apr 27, 2010 3:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle timestamp(6) conversation problem!!
Replies: 8
Views: 4427

My guess is that what is meant here is user-defined SQL with your own TO_DATE function and appropriate format picture.
by ray.wurlod
Tue Apr 27, 2010 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varchar to Numeric data conversion error warning
Replies: 2
Views: 2011

The Num() function is still available, so you will get part way there by applying that to field #2. You could also apply a Len() function, check for existence of any character that is not 0-9 or decimal placeholder (or sign) by converting them to "" and checking for anything remaining.
by ray.wurlod
Mon Apr 26, 2010 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change of IS server IP Address (host name unchanged),Impact?
Replies: 0
Views: 1132

Provided nothing has been hard coded as an IP address you should be OK. Make sure that any entries from /etc/hosts are created on the new machine.
by ray.wurlod
Mon Apr 26, 2010 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can anybody explain - Use of RPC in Server Jobs
Replies: 6
Views: 2217

I think that's IPC (inter-process communication, also called row buffering) rather than RPC.

Whoever wrote what you read got it wrong.

There is no such thing as runtime column propagation in server jobs.
by ray.wurlod
Mon Apr 26, 2010 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get mutiple records values into a single record value
Replies: 6
Views: 2204

What's the purpose of stage variable s1 ?

As far as I can tell, it does not do anything.
by ray.wurlod
Mon Apr 26, 2010 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need to modify the Read only jobs
Replies: 6
Views: 2937

Since you are on version 7, you probably will get away with changing the READONLY attribute in the Repository table DS_JOBS. You may need to change a record in DS_JOBOBJECTS as well. But before you do, ask yourself why these jobs were made read-only, and is it really wise to change them? Might it be...
by ray.wurlod
Mon Apr 26, 2010 10:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read "Parameter Set" through Unix
Replies: 8
Views: 2686

Within your project directory on the server there should be a directory called ParameterSets. Within that directory there is a subdirectory of the same name as each Parameter Set. Within the subdirectory is where the values files live. You can read these as regular operating system text files (notin...
by ray.wurlod
Mon Apr 26, 2010 10:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get mutiple records values into a single record value
Replies: 6
Views: 2204

What kind of stage variables ... ? Provided data are partitioned on ColumnA and sorted on ColumnA using a stable sort, then you can use standard stage variables to assemble your required output string. Follow the Transformer stage with a Remove Duplicates that allows only the last row of each group...
by ray.wurlod
Mon Apr 26, 2010 10:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Current date parameter
Replies: 11
Views: 4290

You should have been able to see all the pertinent part. Because there was so little else, I've removed the Premium status.
by ray.wurlod
Mon Apr 26, 2010 8:40 pm
Forum: General
Topic: How to parse string input into rows by delimiter
Replies: 5
Views: 2574

The list of functions is Appendix B in Parallel Job Developer's Guide

Index() finds an occurrence of a substring in a string and Len() gives the number of characters in a string. Those will get you started.