Search found 206 matches

by rwierdsm
Mon Nov 20, 2006 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in px
Replies: 12
Views: 8193

I'm reading in the whole record as one string and breaking it up into many fields later on. It is entirely possible that one field(record) will be longer than 100000 bytes. I've found an evironment variable that is supposed to allow for a bigger limit APT_MAX_DELIMITED_READ_SIZE I'll let you know ho...
by rwierdsm
Mon Nov 20, 2006 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in px
Replies: 12
Views: 8193

Is anyone aware of a setting that will bump up the 100000 bytes to a higher amount?

I need to import records that may have several 32k fields, possibly going over the 100000 byte limit.

Yikes :!:
by rwierdsm
Tue Nov 14, 2006 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write messages to log
Replies: 3
Views: 1515

Ray, What I had in mind was to write a message from a transformer, outputing some control date values to the log - and maintaining my parallel processing. As such, I didn't want to use a Basic Routine. By the time the after job subroutine happens, the data is lost. I might have used UtilityMessageTo...
by rwierdsm
Tue Nov 14, 2006 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write messages to log
Replies: 3
Views: 1515

Write messages to log

Is there a way of replicating the UtilityMessageToLog functionality found in the Server edition?

Seems like a common thing to want to do and yet I can't find any facility to do this :?:

Rob W.
by rwierdsm
Thu Nov 02, 2006 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Row Order
Replies: 3
Views: 1419

Any other thoughts out there?

Rob W
by rwierdsm
Mon Oct 30, 2006 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Row Order
Replies: 3
Views: 1419

Thanks for the reply Ray.

I think I'll leave this one open for awhile, see if anyone else has some input.

Rob W
by rwierdsm
Mon Oct 30, 2006 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Row Order
Replies: 3
Views: 1419

Dataset Row Order

Given a multiple node installation, will a job that reads a dataset, performs some manipulation to columns and then writes to another dataset maintain the row order, assuming there is no sort being applied on the partitioning tab (say, if I choose Auto)? I would think not, however, I have seen nothi...
by rwierdsm
Fri Oct 27, 2006 12:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet bloating in size
Replies: 2
Views: 1018

Re: DataSet bloating in size

Ultramundane,

That's done the trick!

DataSet is just a little larger than the orginal sequential file, throughput is up by an order of magnitude and more.

Thanks!

Rob W
by rwierdsm
Fri Oct 27, 2006 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet bloating in size
Replies: 2
Views: 1018

DataSet bloating in size

DSXChangers, I'm reading in a sequential file, 14,500 rows, about 3 meg. Defined as a single column varchar(75,000) (some of the record types could be this wide). When reading this file into a dataset, this thing bloats to almost 2 GB. Needless to say this bloated dataset is the opposite of fast. Is...
by rwierdsm
Sat Oct 21, 2006 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read DataSet file name patterns
Replies: 8
Views: 2474

Thanks Ray,

I suspected as much but thought there might some people out there smarter than me that had a better solution. :wink:

Rob
by rwierdsm
Fri Oct 20, 2006 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read DataSet file name patterns
Replies: 8
Views: 2474

List the available dataset available in the required pattern either by ExecuteCommand activity. Pass it as parameter to the job one after other. You can also store it in a file and read and pass it as parameter in a loop by using Loop activity as well. Hi Kumar, I actually thought of creating a mul...
by rwierdsm
Fri Oct 20, 2006 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read DataSet file name patterns
Replies: 8
Views: 2474

Well it wouldn't be a Data Set (which uses internal, binary, forms for numeric data), but it might be a File Set. You can craft a File Set control file containing the pathnames of the actual files (which require identical record structure, and probably no "first line is column names") and...
by rwierdsm
Fri Oct 20, 2006 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mload stage in DS not parameterised
Replies: 1
Views: 1010

We parameterize almost all the values in our MLoad stages. Check the values in your job parameters, there will be a mistake (typo) somewhere in there. Actually, if you right click on the job in Director and pick Details, it will tell you all the values for your job parameters in the last run. Check ...
by rwierdsm
Fri Oct 20, 2006 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read DataSet file name patterns
Replies: 8
Views: 2474

Read DataSet file name patterns

Hey DSXChangers, I need to read a bunch of files and really like the idea of the 'Read Method = File Pattern' in the sequential stage, however, I also like the efficiency of DataSets. Is there a way (on Windows!) to emulate the file pattern read when reading DataSets? I read through the manual, did ...