Search found 53125 matches

by ray.wurlod
Sat Sep 24, 2005 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source records equal to trailer records
Replies: 10
Views: 3894

It's currently at ADN, but stay tuned...
by ray.wurlod
Sat Sep 24, 2005 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Julian to Gregorian(DB2 format YYYYMMDD) date conversion
Replies: 6
Views: 6894

Welcome aboard! :D

Search is your friend. For example this postasks exactly your question though in the server job forum. Search, also, in the Parallel Job Developer's Guide for "Julian" to learn what date conversion functions exist.
by ray.wurlod
Fri Sep 23, 2005 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed to define transformer derivations
Replies: 8
Views: 1767

Let's see - you want urgent support late Friday night/early Saturday morning to solve a problem for which the answer is in the manuals and is taught in the entry-level class? This is not the place to be. This is an all-volunteer site, people post here as and when they can. They are not paid for doin...
by ray.wurlod
Fri Sep 23, 2005 5:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to access rows added to a hash file and to a table
Replies: 3
Views: 899

Just look in the job log for the "active stage finishing" event. All the link row counts are there. Beware, however, that the number of rows written to a hashed file is not necessarily the same as the number of new rows. Hashed files use a destructive overwrite if the key is the same as an existing ...
by ray.wurlod
Fri Sep 23, 2005 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source records equal to trailer records
Replies: 10
Views: 3894

You can pre-process in UNIX (perhaps through a before-job subroutine).
The number of detail lines in the file is given by expr `wc -l $file` - 2 while the number from the trailer line is given by tail -1 $file | cut -d',' -f2,2
by ray.wurlod
Fri Sep 23, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic:
Replies: 2
Views: 1931

You can read about this subroutine in the DataStage BASIC manual or by typing HELP BASIC !GET.PATHNAME at a TCL prompt. The fourth argument (Code in your example) reports whether the subroutine has been called successfully; that is (for example) whether the directory part is a valid pathname. Check,...
by ray.wurlod
Fri Sep 23, 2005 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Rounding Problems
Replies: 5
Views: 1205

You will, however, have to restart DataStage, doing a uvregen in between, in order for the change to take effect.
by ray.wurlod
Fri Sep 23, 2005 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppression Of left zeroes
Replies: 10
Views: 4698

You left out TinyInt and all the unsigned variants. TinyInt is one byte (eight bits) long. Signed it can range between -128 and +127. Unsigned it can range between 0 and 255 (2^8-1). You can generalise to the remaining unsigned types from that. 0 through 65,535 (2^16-1) for SmallInt, 0 through 4,294...
by ray.wurlod
Fri Sep 23, 2005 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: collecting top 200 upc
Replies: 4
Views: 1723

Change your expectations. DataStage is NOT a reporting tool. Most business intelligence tools have this kind of capability out of the box. Some databases have a RANK function. If your client insists, resist. Tell them that ETL and reporting are different. They are wrong. Further, as soon as you move...
by ray.wurlod
Fri Sep 23, 2005 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to extend index CUSTOMER_NN01 by 128 in tablespace
Replies: 5
Views: 2128

Sure is - it's in the Oracle DBA manuals, because it's something you do in Oracle. To do it from DataStage you would need to be running with DBA privilege or something quite close. Since paranoia is a necessary prerequisite to being a good DBA you are unlikely to get that. But the DBA can supply you...
by ray.wurlod
Fri Sep 23, 2005 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB getting details of Warnings / Fatals
Replies: 4
Views: 1433

Just because you need it in a file doesn't mean you have to use UNIX scripting to get it. You could - more easily in my opinion - create a server job to do this task. With -lognewest you should be able to filter on control messages and identify the newest "job started" message. You can extract the t...
by ray.wurlod
Fri Sep 23, 2005 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting my foot wet with PX .......
Replies: 4
Views: 1605

Find me a better term and I'll use it. Lab rats? :lol:
by ray.wurlod
Fri Sep 23, 2005 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is Input buffer overrun?
Replies: 3
Views: 2437

Is this a sequential file? If so, is it fixed width or delimited? Is there more in the row than is specified in the metadata for it? Do you have a reject-handling link? What precision do you specify for the decimal? How many digits are there in this field?
by ray.wurlod
Fri Sep 23, 2005 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: about lookup stage error
Replies: 6
Views: 1878

One of the biggest challenges for people making the transition from server to parallel jobs is that many of your supposed freedoms (such as the freedom to stick whatever you like into any column and expect the thing still to work) are gone. In parallel jobs you must, absolutly must, confirm to the d...
by ray.wurlod
Fri Sep 23, 2005 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting my foot wet with PX .......
Replies: 4
Views: 1605

Watch this site for announcement. The course title is "Server to Parallel Transition". It's aimed at experienced and competent (both) server job developers and aims to equip them with the correct mindset and skill set with which to undertake development of parallel jobs. This is NOT an IILive event;...