Search found 53125 matches

by ray.wurlod
Wed May 16, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hashed file to Static Hashed file conversion
Replies: 9
Views: 2869

2) It's only time shifting in any case. Using MINIMUM.MODULUS you take the hit (of allocating disk space) up front. Using defaults you take the hit as the hashed file grows. With static hashed files you are obliged to take the hit up front. 3) The whole point of dynamic hashed files is that you don'...
by ray.wurlod
Wed May 16, 2007 3:37 pm
Forum: General
Topic: Moving from DS Server to EE
Replies: 4
Views: 1484

1. You will retain existing server job functionality exactly as it is. Enterprise Edition gives you additional (parallel job) functionality. The two co-exist and do not, generally speaking, overlap. 2. No. You make a cogent decision as to which jobs will benefit from a parallel execution model, prim...
by ray.wurlod
Wed May 16, 2007 3:34 pm
Forum: General
Topic: abt sequential file
Replies: 6
Views: 1580

Maube it's the right approach if you're being paid by the hour!
:lol:
by ray.wurlod
Wed May 16, 2007 3:28 pm
Forum: General
Topic: Counting no of records from multiple files
Replies: 7
Views: 2511

Header date was not in your original specification. My original solution is inappropriate for the new specification. You are being too complex. In particular you don't need any Sort stage and you only need one Transformer. SeqFile1 -----> Transformer -----> Aggregator -----> Join -----> Target | Seq...
by ray.wurlod
Wed May 16, 2007 3:23 pm
Forum: IBM QualityStage
Topic: Quality Stage Rules Upgrade
Replies: 1
Views: 1146

The format of the files in rule sets does not change. And they're text files, so you can compare them with just about any tool. I don't believe the content of the "out of the box" rule sets changes between 7.0 and 7.5 either except, of course, for the postal certification rules (CASS, SERP). So you ...
by ray.wurlod
Wed May 16, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing in to a sequential file trhru routine
Replies: 22
Views: 8126

You provide your exact code. We will comment upon it.
by ray.wurlod
Wed May 16, 2007 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File stage
Replies: 2
Views: 1050

What do you know of the MultiValue model (sometimes called non first normal form) for database design? DataStage hashed files (which is how UV tables are implemented) are based on this model; it can contain record types in which other tables (for example collections) can be nested. These can be retr...
by ray.wurlod
Wed May 16, 2007 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hashed file to Static Hashed file conversion
Replies: 9
Views: 2869

1) Use 32-bit unless there is danger that the hashed file will near/exceed 2GB. 2) There IS an overflow file - it's tacked onto the end of the non-overflow part, all in one physical file. Speed of creation will be the same as creating a dynamic hashed file with MINIMUM.MODULUS set to the same figure...
by ray.wurlod
Wed May 16, 2007 6:39 am
Forum: General
Topic: writting dulicate records in a file
Replies: 4
Views: 1635

Run the data through a Sort stage, and get the Sort stage to create a key change column. In a downstream Transformer stage, the key change column will identify the beginning of each group - that is, of each set of duplicates. Constrain on the key change column - where it is reset (0) you have a dupl...
by ray.wurlod
Wed May 16, 2007 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to see DS job stats after succesful run
Replies: 4
Views: 1456

There is no APT_JOB_MONITOR environment variable. You may be confusing it with APT_NO_JOBMON, which disables gathering of statistics.
by ray.wurlod
Wed May 16, 2007 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Hashed File
Replies: 4
Views: 1322

Research the following statements in the on-line Help or in the DataStage BASIC manual:
OPEN
RECORDLOCKU
READU
WRITE
RELEASE
CLOSE

That should get you close.
by ray.wurlod
Wed May 16, 2007 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Creation.
Replies: 4
Views: 1336

There is nothing, in this scenario, to prevent one job from clearing the hashed file while the other job (on the other server) is attempting to read from it. Don't update/clear hashed files on network drives. Don't even PUT hashed files on network drives. UniVerse can manage locking across the netwo...
by ray.wurlod
Wed May 16, 2007 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fetch Data Based on List of Keys
Replies: 8
Views: 1600

It's probably fair to say that U doesn't want to.

asitagrawal posted the original question.

The correct spelling of the second person personal pronoun is "you".
by ray.wurlod
Wed May 16, 2007 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Objects
Replies: 1
Views: 1131

They're stored in a database.
They're not stored in a folder structure.
The database varies at different versions of the product.
In short, no.
The vendor has chosen not to publish this information.
by ray.wurlod
Wed May 16, 2007 12:52 am
Forum: General
Topic: writting dulicate records in a file
Replies: 4
Views: 1635

Yes and yes.