Search found 53125 matches

by ray.wurlod
Thu Apr 23, 2009 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if i have more than 10 keys columns to vertical pivot logic
Replies: 7
Views: 1775

Ordinal position of the key columns in the key is independent of the order that you specify that they be sorted.
by ray.wurlod
Thu Apr 23, 2009 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we update DS Project Level param value from DS Job
Replies: 2
Views: 724

You can certainly change the value of a project level parameter (environment variable) from within a job, but the change will not be visible in the job that effects the change. Job parameter values are read into a structure when the job starts.
by ray.wurlod
Thu Apr 23, 2009 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data into oracle table
Replies: 3
Views: 827

Take a look at the score for this step (job). What are the operators that make up the composite operator?
by ray.wurlod
Thu Apr 23, 2009 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Length of a field in Hash File
Replies: 6
Views: 2149

The limit is on the physical structure of the key, not on a single key column. That is, MAXKEYSIZE affects the maximum allowable size of @ID. If you increase MAXKEYSIZE (you need to edit uvconfig, shut down the DataStage services, regenerate the system (disk) shared memory segment and re-start DataS...
by ray.wurlod
Thu Apr 23, 2009 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file goes wrong, thousands of files
Replies: 11
Views: 4581

Probably not. The problem was that a hashed file stage was configured to create a dynamic hashed file (Type 30) but managed not to create .Type30 or, possibly, that some other process soon after managed to delete .Type30 (cause or causes unknown, and unknowable unless it happens again). The descript...
by ray.wurlod
Thu Apr 23, 2009 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to install DataStage Server on UNIX environment
Replies: 6
Views: 2492

... or are/were you just being impatient? netstat -a can take quite a while to complete even on moderately-sized systems; it has a lot of information to gather.
by ray.wurlod
Thu Apr 23, 2009 2:20 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Error using Data Connection in IA
Replies: 16
Views: 9054

There is NO SUCH THING (yet) as a 64-bit installation of DataStage on AIX. DataStage on AIX is a 32-bit application and therefore needs to use 32-bit libraries.
by ray.wurlod
Thu Apr 23, 2009 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job running, but not starting
Replies: 1
Views: 949

No, and you've destroyed the evidence.
by ray.wurlod
Thu Apr 23, 2009 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connection problem
Replies: 1
Views: 1066

Something else. Open your Administrator client and set the inactivity timeout to a longer interval.
by ray.wurlod
Thu Apr 23, 2009 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parametrize Execute Command Activity
Replies: 5
Views: 1645

Then please mark this thread as Resolved
by ray.wurlod
Thu Apr 23, 2009 1:28 am
Forum: General
Topic: Naming convention for links in Sequencer
Replies: 4
Views: 998

upstream_activity_Done (unconditional)
upstream_activity_OK
upstream_activity_Error
upstream_activity_NonFail (custom: OK or warn)
etc.

(I don't mean literal activity names, more the task that it performs.)
Outputs from a Nested Condition activity should reflect the condition.
by ray.wurlod
Thu Apr 23, 2009 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to use max function in transformer without aggregator
Replies: 3
Views: 2952

Nowhere in what you have described is there any need for any kind of Max() function. You are performing a vertical pivot. It is possible to implement what you have described in Transformer stage (ideally with an upstream Sort stage generating a Key Change column and a downstream Remove Duplicates st...
by ray.wurlod
Thu Apr 23, 2009 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identify Jobs that comples with warning
Replies: 9
Views: 2061

And you can also do it with a job, which was your original question, but you will need to write a couple of routines to gather information as each job is processed through your new job (which must be smart enough not to process itself, lest you introduce infinite recursion).
by ray.wurlod
Thu Apr 23, 2009 12:21 am
Forum: General
Topic: Command Line to call Datastage Server Routine
Replies: 6
Views: 3201

Re: Command Line to call Datastage Server Routine

juan_pera wrote:Goodday All,

Does anyone know if it is at all possible to execute a DataStage Server Routine (Function) from the command line ?

Regards
Juan Pera
It is not possible.
by ray.wurlod
Thu Apr 23, 2009 12:17 am
Forum: General
Topic: Convert string to another charset
Replies: 7
Views: 2330

One file, one character set. Tell the providers of the file. DataStage does have the ability to use different character mapping in different columns, but not in different rows. If you know which rows they are, split the file and process through different Sequential File stages with different map set...