Search found 53125 matches

by ray.wurlod
Mon Jul 26, 2004 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parsing CUST_PHONE
Replies: 4
Views: 1283

So easy in the USA, where every phone number has the same format. Probably the most efficient, though least flexible, is substrings. Here are some variations on that theme. cust_phone[1,3] Left(cust_phone,3) cust_phone[5,3] cust_phone[9,4] cust_phone[4] Right(cust_phone,4) The Field ...
by ray.wurlod
Mon Jul 26, 2004 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage jobs
Replies: 4
Views: 1989

I think the point you're missing is that DataStage is client/server computing. Even though you are working on a PC, what you're actually doing while you're importing metadata, designing and so on is being stored on another computer, which may be UNIX or may be Windows. If you issue a Run request fro...
by ray.wurlod
Sat Jul 24, 2004 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Job ; User defined SQL
Replies: 4
Views: 973

DB2's equivalent command is the eponymous db2. :D
by ray.wurlod
Sat Jul 24, 2004 5:03 pm
Forum: Enhancement Wish List
Topic: Search command in Designer
Replies: 6
Views: 3465

I have a routine that does a search-and-replace on stage and link names, plus occurrences of the search token in job parameter default values and in annotations. This enables generic job designs to be cloned and rapidly made specific. Siva, is this the kind of thing you're after? I read that you're ...
by ray.wurlod
Fri Jul 23, 2004 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel extender
Replies: 9
Views: 2880

Will have to get back on the exact platform requirements.

Certainly PX is running on a cluster of Linux machines in Ascential's Melbourne (Australia) office. Supported/certified or not, it seems to work.
by ray.wurlod
Fri Jul 23, 2004 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting MaxValue only to a file without using Aggregator
Replies: 12
Views: 2547

:!: Ah, an easy one.

Job parameter values can not be changed once the job has started.
. My question is, is there any way to assign the stage variable value into Job parameter inside the job?

So the answer is no.
by ray.wurlod
Fri Jul 23, 2004 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS 6.x/7.x for download?
Replies: 5
Views: 741

The evaluation version IS the regular one, but with a license that expires after a certain amount of time - usually a month.

The only way you can get the regular one is in exchange for kilobucks !
by ray.wurlod
Fri Jul 23, 2004 8:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dropping records
Replies: 3
Views: 1834

Umm... why is this in the Parallel Extender forum? :o
by ray.wurlod
Fri Jul 23, 2004 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS 6.x/7.x for download?
Replies: 5
Views: 741

Evaluation editions are not available for download.

Contact Ascential Software, who may be prepared to supply a time-limited evaluation copy if there's a likelihood of a sale.
by ray.wurlod
Fri Jul 23, 2004 5:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting MaxValue only to a file without using Aggregator
Replies: 12
Views: 2547

If the source is a text file, pre-process it (use Filter in the Sequential File stage, or ExecSH as a before-stage or before-job subroutine). Sort the file then grab the final line. sort filename | tail -1
by ray.wurlod
Fri Jul 23, 2004 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Job ; User defined SQL
Replies: 4
Views: 973

The mechanism by which DataStage transfers values from itself to your SQL is parameter markers. These are either "?" or of the form ":1", ":2" and so on, depending on the database. Look at the generated SQL, perhaps in a different job. It will look something like INSERT INTO Owner.Table(col1,col...
by ray.wurlod
Fri Jul 23, 2004 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Teradata Bulk Loader question
Replies: 1
Views: 689

Try lying in yout column definition metadata for the link that writes to the bulk loader. At worst you'll get ONE metadata mismatch warning, but the job will go on. :wink:
by ray.wurlod
Fri Jul 23, 2004 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why landing data is good for warehouse batch ETL
Replies: 14
Views: 7298

Why Red Brick Warehouse remains a good choice

Only my solution was more flexible and easier to implement than Red Brick's Not only does Red Brick automatically maintain its aggregates, it automatically rewrites SQL executed against the base table in order to use the precomputed results stored in the aggregates, where appropriate. Bet your "sol...
by ray.wurlod
Fri Jul 23, 2004 5:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating UUIDs or GUIDs in DataStage
Replies: 6
Views: 4234

Some time back I posted a stored procedure for generating a GUID in SQL Server and returning it to DataStage. Perhaps you could adapt this.
by ray.wurlod
Fri Jul 23, 2004 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How handle UNISYS 9bit data
Replies: 2
Views: 1066

Why do you always get the hard ones, Dae-Hwan? I think you will need to ask the owners of the mainframe, or the Unisys company, what "9 bit" actually means. It may, for example, be a proprietary scheme for encoding Korean characters. If you can obtain a list of character mappings, it may be possible...