Search found 53125 matches

by ray.wurlod
Wed Aug 08, 2007 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dependency report for a job
Replies: 10
Views: 2752

Then you need to start your processing by scanning the job log of the master job sequence, then for each "job run requested" follow its tree of control. You can do this iteratively (which I'd recommend) or recursively.
by ray.wurlod
Tue Aug 07, 2007 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Data set and File set
Replies: 5
Views: 13055

Very few UNIX machines still have that limit these days, unless the Sys Admin chooses not to enable large file support. A Data Set or File Set can employ multiple physical files per processing node, so even a 2GB file size limit is not an obstacle. The largest (theoretical) File Set can have 10,000 ...
by ray.wurlod
Tue Aug 07, 2007 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shot Read in Seq File
Replies: 4
Views: 1625

Yeah? Well THOSE data (that you posted) certainly aren't fixed width.
by ray.wurlod
Tue Aug 07, 2007 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Text manipulation
Replies: 5
Views: 1021

Can be done without a routine. Convert(@FM,",",Fmts(Convert(",",@FM,InLink.TheString),"5'#'R")) This converted the comma-delimited string to a dynamic array, applied the Fmts() function to the dynamic array element-by-element, then converted the ...
by ray.wurlod
Tue Aug 07, 2007 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Who will use more memory Dataset or Seq. file
Replies: 8
Views: 2721

On the other hand, Data Sets store numbers in binary format, which can be much more compact than storing them as text.

How long is a piece of string?
by ray.wurlod
Tue Aug 07, 2007 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Retriving Diff records
Replies: 3
Views: 831

Complex Flat File stage
by ray.wurlod
Tue Aug 07, 2007 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Problem
Replies: 7
Views: 2249

Make very sure that the inputs are identically key-partitioned and sorted.
by ray.wurlod
Tue Aug 07, 2007 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there a way to set default display columns?
Replies: 1
Views: 818

No. View Data always opens with all columns displayed. You can select them after that, but not prior to opening.
by ray.wurlod
Tue Aug 07, 2007 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character Aggregation
Replies: 1
Views: 620

For the server Aggregator stage you can form the min and max of character data.
by ray.wurlod
Tue Aug 07, 2007 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dependency report for a job
Replies: 10
Views: 2752

Do you mean dependent at design time (all the jobs that might be run from a job sequence) or dependent at run time (all the jobs that were actually run by the job sequence, depending upon its internal logic)?
by ray.wurlod
Tue Aug 07, 2007 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting the Director list of executed jobs
Replies: 10
Views: 2184

I disagree that it has to be done in job control code. You can use DS_JOBS as source (use a Selection to eliminate control records - those that have "/" or "\" as their first character) and create routines to extract the relevant information. Much more GUI.
by ray.wurlod
Tue Aug 07, 2007 2:36 pm
Forum: General
Topic: Compare Date
Replies: 2
Views: 1085

Is the input date a date or a string? If it's a string, and the parameter is a string, you can compare them directly. If one is a date and the other is a string, then you need to convert one or the other so that the data types are compatible for comparison.
by ray.wurlod
Tue Aug 07, 2007 2:33 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Cross Table Taking much Time
Replies: 4
Views: 2674

Somewhere between zero and infinity. How long it will take really depends on the results of column analysis, especially the frequency distributions. In practice expect hours rather than seconds with this many tables.
by ray.wurlod
Tue Aug 07, 2007 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting email attachment
Replies: 2
Views: 1529

Welcome aboard.

This particular forum is for suggestions about the DSXchange site itself. Can you please find a more appropriate forum for your question (use General if nothing else).
by ray.wurlod
Tue Aug 07, 2007 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to read record from datastage log tables
Replies: 5
Views: 3390

During a job run the job status is always Running. In an after-job subroutine you can interrogate the "interim status" - the status with which the job will finish if the after-job subroutine returns normally.