Search found 53125 matches

by ray.wurlod
Wed May 03, 2006 9:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compatibility with Solaris 5.10
Replies: 3
Views: 1313

In Sun Solaris: version 2.10 = version 5.10 ?? Yes SunOS was renamed Solaris. SunOS 5.10 is Solaris 2.10 In DataStage: version 7.5.1.1 <> version 7.5.1 ?? 7.5.1.1 is 7.5.1 with fixes. In DataStage: version 7.5.1.1 <> version 7.5.1A-OEM ?? OEM (other equipment manufacturer) means that it's supplied ...
by ray.wurlod
Wed May 03, 2006 9:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shared containers in parallel -- multiple instances?
Replies: 7
Views: 1353

DataStage server uses multiple processes rather than multiple threads, with very few exceptions (for example the sort engine is multi-threaded). Since separate jobs run in separate process you can correctly deduce that their local variables are independent of those in other jobs.
by ray.wurlod
Wed May 03, 2006 9:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need suggestions for bulding datastage job
Replies: 8
Views: 2156

1. Any jobs presupposed by lookups. This includes lookups to be used in existence and change detection for Type 2 SCD. 2. Extract data from source to text files (rather than staging tables) - in your case they are already text files. 3. Pre-processing of source data (for example removal of header/tr...
by ray.wurlod
Wed May 03, 2006 8:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: identify temp files created by DS
Replies: 7
Views: 2942

The directory pointed to by UVTEMP may contain any of the following. - temporary files when compiling sica constraints ('compconXXXX') as part of DataStage SQL security - temporary files used for sorting (partitions files that are then merged) 'sort'XXX') - temporary files for EXECUTE...CAPTURING ('...
by ray.wurlod
Wed May 03, 2006 8:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Attempt to convert String value
Replies: 8
Views: 3001

Code: Select all

Oconv(Iconv("26-APR-06", "DDMY"), "D-YMD[4,2,2]") : " 00:00:00"
by ray.wurlod
Wed May 03, 2006 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Archiving of data
Replies: 3
Views: 892

You can select only current data from source, using an appropriate WHERE clause, if the records have some date/time column you can use as the basis of this selection. That feeds the job that populates the data mart. A separate job can be used to purge the data mart tables of records more than a year...
by ray.wurlod
Wed May 03, 2006 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Resize
Replies: 6
Views: 2322

RECORD.SIZE is not the correct option for 64BIT. 64BIT is. RECORD.SIZE specifies the average record size to be stored, which causes DataStage to calculate GROUP.SIZE (and, implicitly, LARGE.RECORD).

And it's "hashed" file, not "hash" file. A hash file is used for filing hash.
by ray.wurlod
Wed May 03, 2006 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file warning message
Replies: 5
Views: 1593

... and the actual limit is undocumented, so you will need to determine it by experimentation. If you do, please post your findings.
by ray.wurlod
Wed May 03, 2006 8:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CAN we run Serverjob in Parallel Environment ?
Replies: 4
Views: 1290

You already have it. It's part of the Server to Parallel Transition Lab. There are various parts therein that discuss "how you do this in server jobs". Just need to tidy it up a bit. Should be out some time before Dubbya orders the destruction of the planet.
by ray.wurlod
Wed May 03, 2006 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting integer to date
Replies: 3
Views: 1045

In a Transformer stage explore the conversion functions and the casting functions. You can also search the forum, since this question has been addressed in the recent past.
by ray.wurlod
Wed May 03, 2006 8:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencing Issues in Parallel
Replies: 1
Views: 702

(1) A job can never become uncompiled. All you need to do is to reset the job.
(2) Precisely how do you supply the parameter value when you request the job run?
by ray.wurlod
Wed May 03, 2006 8:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lower case data to upper case
Replies: 4
Views: 3266

What are the business rules associated with casing? For example, are accented lower case letters to lose their accents when converted to upper case (as in French in France) or not (as in French in Canada)? Do any characters such as the German "β" have to be converted into multiple upper case le...
by ray.wurlod
Wed May 03, 2006 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CAN we run Serverjob in Parallel Environment ?
Replies: 4
Views: 1290

You can run them in the PX environment subject to certain restrictions documented at the end of Chapter 2 of the Parallel Job Developer's Guide - however you will get reduced, rather than enhanced, performance because the strongly-typed environment of PX must convert to the typeless environment of s...
by ray.wurlod
Wed May 03, 2006 8:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to integer
Replies: 15
Views: 4464

(If (SrcColumn < 0) Then "-" Else "") : Fmt(Abs(SrcColumn), "R%" : (4 - (SrcColumn < 0))) or If SrcColumn < 0 Then "-" : Fmt(Abs(SrcColumn), "R%3") Else Fmt(SrcColumn, "R%4&quo...