Search found 53125 matches

by ray.wurlod
Mon Feb 19, 2007 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update the row with accumulated counts where insert fails
Replies: 7
Views: 1497

For just a few cents per day (a few more, in Canadian cents) you can purchase a premium membership and be able to read the premium posts. You will also be helping to fund the bandwidth charges incurred by this site. For your interest, the total received from premium memberships is not enough to cov...
by ray.wurlod
Mon Feb 19, 2007 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel job on one node
Replies: 5
Views: 1639

Is your job design using Data Set or File Set stage(s)? These are, in some sense, tied to the configuration file that was used when they were created. In particular, the resource disk that specifies the location of their data files must be accessible in whatever configuration is used subsequent to t...
by ray.wurlod
Mon Feb 19, 2007 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: slow read from dataset - combinability mode issue?
Replies: 12
Views: 3970

What happens if you allow the partitioning from the Data Set to be (Auto) rather than Same? Do you get a repartitioning icon on the link? (You don't need to re-run the job - just change the job, then exit without saving, to answer this question.) The inserted buffer operators are there to attempt to...
by ray.wurlod
Mon Feb 19, 2007 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSets can't handle float properly
Replies: 10
Views: 2523

:idea: Has anyone reported this to their support provider?
by ray.wurlod
Mon Feb 19, 2007 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format and date difference
Replies: 8
Views: 2260

If the problem has been resolved, please post how it was resolved. MonthFromDate() - MonthFromDate() is only a partial solution, in that it will only work if the dates are in the same year and the day number of the first date is less than or equal to the day number of the second date. Otherwise the...
by ray.wurlod
Mon Feb 19, 2007 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Table Definitions- Dynamic Update
Replies: 8
Views: 2364

:idea: Data Elements

Use them all the time. Can perform Usage Analysis on them.
by ray.wurlod
Mon Feb 19, 2007 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of combine records stage
Replies: 15
Views: 6766

Please post the record schema from both the input and output links of your Combine Records stage.
by ray.wurlod
Mon Feb 19, 2007 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Date from DB2 Enterprise stage
Replies: 2
Views: 827

Does DB2 have a TO_CHAR() function? You can certainly CAST (BIRTH_DATE AS CHAR(10)) to read it as Char(10).
by ray.wurlod
Mon Feb 19, 2007 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading JOB PARAMETERS from File
Replies: 7
Views: 1893

My preferred approach, maximizing use of the GUI, is as follows. In a job sequence, run a small job to load the parameter names and values into a hashed file. Then use a function such as Trans() or UtilityHashLookup() to retrieve the value when setting job parameter values in a Job activity.
by ray.wurlod
Mon Feb 19, 2007 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataDirect DB2 ODBC w/ Inter Process Enabled Aborting
Replies: 10
Views: 3214

I agree with what Ken posted. Particularly if you have a completely disjoint set of keys, the hashed file supports as many writer processes as you want to throw at it. Locking only occurs at the record level when you use a Hashed File stage. If you have duplicate keys, there's still no real problem ...
by ray.wurlod
Mon Feb 19, 2007 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not running as scheduled
Replies: 10
Views: 5403

Check with the UNIX Administrator that the cron daemon is running. It should be, but one must eliminate all possibilities.
by ray.wurlod
Mon Feb 19, 2007 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Error Code
Replies: 12
Views: 3305

Re: Routine Error Code

Hi all, In a server routine i am running a server job. When the server job does not complete successfully then the routine has to return a non zero routine code. I am calling this routine in after job sub routine in a server job. When I start i set the ERROr code =0. Is the routine code and ERROCod...
by ray.wurlod
Mon Feb 19, 2007 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup
Replies: 6
Views: 1746

If you WANT the duplicates, do nothing. A simple left outer join will deliver all the duplicates from Tbl1, and mimic the behaviour of DataStage lookup. If you want to remove the duplicates, then an approach such as an inner self-join with the distinct key values would suffice.
by ray.wurlod
Mon Feb 19, 2007 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 7.5 Connection problem
Replies: 18
Views: 5036

The Moody Blues wrote:Timothy Leary's dead.
No, no, no, no he's outside, looking in.
by ray.wurlod
Mon Feb 19, 2007 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: open the file in the project default directory and read
Replies: 7
Views: 3428

Note also that the Else clause can be taken in an OpenSeq statement even though the file is open for writing. This indicates that the file does not yet exist; the successful open is indicated by Status() returning 0. Search the forum for OpenSequentialFile which illustrates all the possibilities whe...