Search found 42189 matches

by chulett
Mon May 19, 2008 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File nane with date
Replies: 25
Views: 10315

That can't be used in directly in the stage AFAIK. You'd need to create a fixed filename and then use that 'after job' via ExecSH to rename the file to include the date.
by chulett
Mon May 19, 2008 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hashed file takes too long
Replies: 11
Views: 3080

Job design? Bottleneck? The pivot is a notoriously slow stage (especially given your metrics), your issue probably has nothing to do with the hashed file itself.
by chulett
Mon May 19, 2008 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejecting data
Replies: 3
Views: 945

You would have to read the hashed file first to check for existence and 'reject' any that succeed. You can do this all in one transformer if you don't cache the lookup or use the dreaded 'lock for update' option.
by chulett
Mon May 19, 2008 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File nane with date
Replies: 25
Views: 10315

That would be because you used single quotes rather than the 'back tick' that Jim's example showed.
by chulett
Mon May 19, 2008 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in oracle table which doesn't contain any key cols
Replies: 14
Views: 3780

After all this, don't fall back on the belief that you *need* a primary key to update a record. That seemed to be the original confusion.
by chulett
Mon May 19, 2008 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scd type 2 implementation!!
Replies: 10
Views: 3796

You need to concentrate... harder. Look closer at the output dates, especially in light of the 'SCD2' topic.
by chulett
Mon May 19, 2008 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle error
Replies: 4
Views: 923

Most likely. A table name cannot be longer than 30 characters, for example.
by chulett
Mon May 19, 2008 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in oracle table which doesn't contain any key cols
Replies: 14
Views: 3780

That should be fine as long as you handle it correctly.
by chulett
Mon May 19, 2008 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to multiplicate rows in a Transformer ?
Replies: 4
Views: 1561

Those damn "they"s again and their silly requirements. Ah, well. A direct database lookup is never really the most 'performant' option. ODBC used to always be a poorer choice to a 'native' connection but I don't know if that's the case any more. It can also depend on if you are using a 'wired' drive...
by chulett
Mon May 19, 2008 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scd type 2 implementation!!
Replies: 10
Views: 3796

Welcome aboard. :D It would be best if you told us what parts you are having a problem with or asked some specific questions. Right now, it seems as though you are looking for a 'silver platter' answer, for someone to just lay a full solution out at your feet. That's not generally the nature of the ...
by chulett
Mon May 19, 2008 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to multiplicate rows in a Transformer ?
Replies: 4
Views: 1561

Re: How to multiplicate rows in a Transformer ?

For maintenance reason, my direction doesn't allow me to do directly the join in one source stage. They want an explicit design For 'maintenance reason'? You would typically only go with your 'explicit' design when you had no other choice, but with both tables in the same database, I really don't s...
by chulett
Mon May 19, 2008 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Encrypt passwords in DS Param file
Replies: 4
Views: 3836

It's just plain text. You can set the type as 'Encrypted' when you create them, unless you mean your own custom encryption? :?
by chulett
Mon May 19, 2008 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Outer Join
Replies: 2
Views: 928

Depends on the 'where'. In the database? SQL. Inside the job? Reference lookups are by definition an outer join. Would need more details to provide more help.
by chulett
Mon May 19, 2008 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort stage
Replies: 2
Views: 1378

I've used it without NLS, so it isn't 'required' although that may be the typical implementation. It supports custom collating sequences, so I've used it when I needed (for example) to sort record types: H then D then T for Header, Detail, Trailer.