Search found 53125 matches

by ray.wurlod
Wed Mar 05, 2008 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to refresh a lookup table after every iteration
Replies: 4
Views: 1246

Will the sparce lookup auto commit records:?: That's entirely a matter of how you design, and (I believe) what Arnd meant by "no buffering of output". YOU control the number of rows per transaction - for auto-commit set it to 1. and also using a sparce lookups will decrease the performance of the j...
by ray.wurlod
Wed Mar 05, 2008 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IsValid Function
Replies: 16
Views: 6086

Yes they are, according to DataStage's rules.
by ray.wurlod
Wed Mar 05, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IsValid Function
Replies: 16
Views: 6086

Yes it did.

Since you haven't purchased premium membership you are unable to read the entire reply.
by ray.wurlod
Wed Mar 05, 2008 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle sequencer USING in Transformer while inserting
Replies: 9
Views: 2050

You will need to provide five columns from DataStage, and your INSERT statement has six columns mentioned in the columns list.

Code: Select all

INSERT INTO tablename(c1,c2,c3,c4,c5,c6) VALUES (seqname.NEXTVAL,:1,:2,:3,:4,:5)
by ray.wurlod
Wed Mar 05, 2008 6:22 am
Forum: General
Topic: UTF8
Replies: 4
Views: 2276

Yes. But not directly because - being in Japan - Excel is set up to expect Shift-JIS. But you can specify different map if you open a worksheet then use the Import Data\Import External Data menu option (under Data menu, from memory). I think the field is called "File Origin" or something similar.
by ray.wurlod
Wed Mar 05, 2008 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset is not creating when job aborts
Replies: 7
Views: 1499

So we're back to "when and why did the job abort?"
by ray.wurlod
Wed Mar 05, 2008 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Reading
Replies: 9
Views: 2917

That was not a part of your original specification!

Why not write a little routine to pre-process the file, to remove all the totally blank lines? This can be executed, for example, as a before-job subroutine, and the job reads its result (a different, but associated, file name).
by ray.wurlod
Wed Mar 05, 2008 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle sequencer USING in Transformer while inserting
Replies: 9
Views: 2050

You can not use it in the Transformer stage itself. You could use it through an Oracle stage of some kind servicing the reference input, and in the Oracle stage select a single row (from anywhere - DUAL will do) invoking the NEXTVAL property of the sequence. This will be abysmally slow. More usual i...
by ray.wurlod
Wed Mar 05, 2008 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading input from a sequential file
Replies: 6
Views: 1748

So you plan to put the Excel (.xls) file on a Unix machine? Good luck!! Or is it a text dump (.csv or .txt file) that you plan to put on the Unix machine? In either case you can work out which is the latest by checking the date/time accessed/modified, which the ls option suggested by ArndW uses to s...
by ray.wurlod
Wed Mar 05, 2008 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dynamic value
Replies: 1
Views: 781

Use job parameters, and references to them in the SQL - for example #zMonth# and #zYear# - instead of the "@"-style references.
by ray.wurlod
Wed Mar 05, 2008 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TeraSync: TimeOut
Replies: 9
Views: 4755

Welcome aboard, and thank you for the useful advice.
by ray.wurlod
Wed Mar 05, 2008 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IsValid Function
Replies: 16
Views: 6086

I explained how the conversion is effected in my previous post on this thread. The "?" character is interpreted as a delimiter character, then the rules that I outlined are applied. Premium membership costs less than 30c per day and allows you, among other things, to read the entirety of posts by th...
by ray.wurlod
Wed Mar 05, 2008 5:53 am
Forum: General
Topic: UTF8
Replies: 4
Views: 2276

The site where I am currently working uses UTF-8 almost exclusively, using Oracle databases. There are a couple of exceptions where external providers send text files encoded using Shift-JIS. DataStage copes perfectly well with both. The only mapping error I've encountered is a Japanese hyphen chara...
by ray.wurlod
Wed Mar 05, 2008 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job status 99
Replies: 3
Views: 1228

Different error handling in dsjob and in the GUI client, probably. It's just how it is.

Best practice is to check the job status prior to submitting a run request.
by ray.wurlod
Wed Mar 05, 2008 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while File Set creation
Replies: 14
Views: 6521

Because you probably missed some vital step in the New phase. It is really difficult to reconstruct the exact history of steps you took.