Search found 15603 matches

by ArndW
Wed Dec 05, 2007 10:38 am
Forum: General
Topic: Error while importing Orchestrate schema
Replies: 4
Views: 1035

That is not an error message, that is a command.
by ArndW
Wed Dec 05, 2007 10:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix Server load is too high while running DS jobs
Replies: 3
Views: 1031

As Craig already pointed out, 80-90% utilization is great. It also means that your job is probably bottlenecked on CPU so if you wanted to make it run faster you would need to see if you could reduce computations. Any job will get as much system resources until it maxes out the system on CPU, I/O or...
by ArndW
Wed Dec 05, 2007 10:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't attach parameter from sequnce...
Replies: 3
Views: 1192

What is your parameter datatype, it seems as if the parameter contents are not valid for the type of parameter
by ArndW
Wed Dec 05, 2007 10:32 am
Forum: General
Topic: Substrings issue with specific characters
Replies: 4
Views: 1587

The substrings function is used for multivalue strings, you should use just the normal substring function.
by ArndW
Wed Dec 05, 2007 10:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of transformer stage
Replies: 15
Views: 3678

If you add a constraint "1=2" to your job does it still abort? Does it abort at the same row number every time? If you drop a few columns from the source and don't write anything to the output, does it still fail and does it fail in the same place? Basically the goal is to make simple changes to the...
by ArndW
Wed Dec 05, 2007 10:24 am
Forum: General
Topic: Deployment without using dierector
Replies: 11
Views: 2250

Jobs aborting
Crash dumps sigh
Director missing
by ArndW
Wed Dec 05, 2007 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATE.FILE usage for 64 bit hashed files
Replies: 30
Views: 7576

The UNIX command you are looking for is mkdbfile ; you can always call that from a job or sequence using either the DS/BASIC "EXECUTE" command or the DSExecute function The command will not create a VOC entry for the file, and in order to create the DICTionary file you will have to call it again wit...
by ArndW
Wed Dec 05, 2007 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi Instance Seq
Replies: 2
Views: 709

I don't quite understand what you've done, but it would help if you documented what failed with what message.
by ArndW
Wed Dec 05, 2007 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Log Info
Replies: 4
Views: 1033

To get the last 3 lines do something like MessagesString = DSGetLogSummary (JobHandle, DSJ.LOGWARNING,StartTimestamp ,EndTimestamp,0) MessageCount = DCOUNT(MessagesString,@FM) Last3 = CONVERT(@FM,CHAR(10),MessagesString<MessageCount-2,3) Alternatively the last command might read Last3 = CONVERT(@FM,...
by ArndW
Wed Dec 05, 2007 3:20 am
Forum: General
Topic: Error while importing Orchestrate schema
Replies: 4
Views: 1035

I would help all of us if you told us what error you are getting.
by ArndW
Wed Dec 05, 2007 3:19 am
Forum: General
Topic: getting the error while viewing data /running
Replies: 7
Views: 2656

Re: getting the error while viewing data /running

Your error is on the view data of DB2, not the sequential file, right? ... >**** Parallel startup failed **** > >This is usually due to a configuration error, such as >not having the Orchestrate install directory properly >mounted on all nodes, rsh permissions not correctly >set (via /etc/hosts.equi...
by ArndW
Tue Dec 04, 2007 12:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregation functionality in transformer
Replies: 3
Views: 1062

You have one stage var that checks to see if your group column has changed or not, and another that sums the current group values. Then have an output constraint on your goup change stage variable and output the sum when that group has changed.
by ArndW
Tue Dec 04, 2007 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join & LookUp Stage Partitions
Replies: 6
Views: 1649

Yes, you should use "Entire" partitioning in this case as well.

The "keys" on a stage are different and independent of your hashing algorithm; what matters is that both streams are partitioned with the same method and columns.
by ArndW
Tue Dec 04, 2007 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregation functionality in transformer
Replies: 3
Views: 1062

I might as well ask first, before someone else does : why not use the aggregator stage to do this? You can use stage variables in a transform stage to do this, checking for a group change in the column you are using as a key and totalling your value column until the group change, then outputting tha...
by ArndW
Tue Dec 04, 2007 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join & LookUp Stage Partitions
Replies: 6
Views: 1649

Use the same partitioning methods for the join, use "entire" for the reference unless you are certain of your lookup partitioning (usually that is highly unlikely to be the case, so most of the time the "entire" method needs to be used)