Search found 53125 matches

by ray.wurlod
Wed Dec 14, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding config file
Replies: 5
Views: 1662

The uvconfig file is used to set the tunables for the DataStage Engine itself, things such as the size of lock tables, the number of dynamic hashed files that can be open simultaneously, the number of publicly-available numbered semaphores, whether NLS is enabled, and so on. There is one uvconfig fi...
by ray.wurlod
Wed Dec 14, 2005 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Select distinct records from Files
Replies: 22
Views: 6265

... or 19 million TB (approximately), whichever comes first! 8)
by ray.wurlod
Wed Dec 14, 2005 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: different connection file(.odbc.ini, etc) for each project
Replies: 5
Views: 1969

Yes, by setting the pathname of .odbc.ini as the value of the $ODBCINI environment variable.
by ray.wurlod
Wed Dec 14, 2005 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while viewing data
Replies: 2
Views: 800

It can't find a db2read function. This almost certainly means that the relevant environment variables for DB2 client (or DB2 Connect or both) have not been set up properly.
by ray.wurlod
Wed Dec 14, 2005 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job being monitored eror
Replies: 11
Views: 2766

Is the message IS being monitored, or MAY BE being monitored? The second of these can occur if any kind of lock on the job exists in the Repository - if the job is open in Monitor, Designer or Monitor, for example.
by ray.wurlod
Wed Dec 14, 2005 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grid Capability for DataStage
Replies: 6
Views: 3317

DataStage EE is currently running in production on at least two grids of which I am aware. It treats the grid as an MPP cluster. The operating system looks after a lot of the distribution of work. I have not seen any official announcement that DS supports grid computing, but at least two sites have ...
by ray.wurlod
Wed Dec 14, 2005 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage: Processing the data differnetly
Replies: 3
Views: 890

Records processed are reported in thousands (K) of rows. 1000K is one million.
by ray.wurlod
Tue Dec 13, 2005 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restartabilty issue due to invocations with diff parameters
Replies: 3
Views: 2485

A restarted job sequence MUST use all the same parameter values as the prior incomplete run. This is the only way that you can prevent this warning and abort from occurring. (Well, there's one other way, and that's to recompile so that all the checkpoints are lost and to run the entire sequence agai...
by ray.wurlod
Tue Dec 13, 2005 10:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Max Key From Hashfile
Replies: 7
Views: 2558

Code: Select all

Trans("hashedfilename", "keyvalue", 1, "X")

Read about this function in DataStage BASIC manual. You may need to add Trans() to DSParams file if you don't like the red colour.
by ray.wurlod
Tue Dec 13, 2005 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem adding jobs to schedule
Replies: 15
Views: 14366

Did you ever resolve this? I have just encountered it on a 7.5.1 system.
by ray.wurlod
Tue Dec 13, 2005 7:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Configuration
Replies: 6
Views: 2385

Have you set all operation to sequential mode? It would be very difficult for your sys admin to determine otherwise, because your node definitions are identical. You can only determine whether two nodes are used under such a configuration from your logs, or by using the data set management tool or v...
by ray.wurlod
Tue Dec 13, 2005 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with lookup
Replies: 24
Views: 5393

There is no lookup whatsoever in that diagram. Therefore (unless you have a constraint expression in the Transfomer) the expected rows out will be the same as the number of rows in.
by ray.wurlod
Tue Dec 13, 2005 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: URL parsing in Datastage
Replies: 9
Views: 2747

This is an example of the powerful string handling functions available in Server. This solves your question: FIELD(In.URL,'/',1,DCOUNT(In.URL,'/')-1) The DCOUNT() function returns the number of fields delimited by '/' and the FIELD(string,delimiter,from[,to]) function gives you all ...
by ray.wurlod
Tue Dec 13, 2005 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of Hash file
Replies: 5
Views: 1694

It's HASHED file, dammit, not "hash" file. :evil:
by ray.wurlod
Tue Dec 13, 2005 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion to timestamp
Replies: 4
Views: 1254

There are a couple of SDK routines dealing with 1970-01-01-based dates.