Search found 42189 matches

by chulett
Wed Feb 20, 2008 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: READU threshold
Replies: 3
Views: 1512

If you do use them, make sure you write back to the locked records in the same transformer. I once found one job that locked records in one tranny and then updated the hash in a downstream tranny. Running it with any volume blew out the lock table. As Ken notes, I also don't use this option. However...
by chulett
Wed Feb 20, 2008 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage 7.5.1A connectivity with Teradata V2R6.2
Replies: 9
Views: 4305

Why not let us know what the 'issues' are that you are having?
by chulett
Wed Feb 20, 2008 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oraoci9.dll - The specified module can not be found
Replies: 7
Views: 3256

Is this your first time trying to use any Oracle stage in DataStage?
by chulett
Tue Feb 19, 2008 3:30 pm
Forum: General
Topic: DataStage Job Architecture
Replies: 9
Views: 2429

RTI is 'Real Time Integration' and was renamed to the 'SOA Edition' some time back, but the stages still retain the RTI name. At least in 7.x, in 8.x it is now known as 'WISD'.
by chulett
Tue Feb 19, 2008 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SOA Folder and opf ipf files
Replies: 3
Views: 2414

Don't necessarily read 'Service Oriented Architecture' into SOA as I think they really mean 'soa'... as in these in my /tmp directory: $ ls -ld soa* drwx------ 2 dsuser dstage 96 Oct 9 2006 soa01727 drwx------ 2 dsuser dstage 96 Oct 20 2004 soa02581 drwx------ 2 dsuser dstage 96 Nov 8 17:26 soa02584...
by chulett
Tue Feb 19, 2008 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment values to Email Notification in Datastage 7.0
Replies: 1
Views: 1878

You'd need to write your own custom routine using DSExecute - an interlude to your mail client of choice - mailx, for example. Then you'd have full control over all of the components. Have you tried doing this for the email addresses yet? I ask because your attempt to affect the SMTP server may be '...
by chulett
Tue Feb 19, 2008 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SOA Folder and opf ipf files
Replies: 3
Views: 2414

You should find that these are 'temporary' files generated by the Sort stage. They end up in the Project when 'Temporary Directory' property of the stage is left empty. I always redirect that to someplace else - like "/tmp" on UNIX - so they get cleaned up automagically.
by chulett
Tue Feb 19, 2008 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quotes added in writing to a sequential file
Replies: 6
Views: 1349

No, it means you don't want any quote character used. Check the help or try to leave the field empty.
by chulett
Tue Feb 19, 2008 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming new line character
Replies: 5
Views: 1172

Well, then it's not a new line. If you get the actual decimal value, then you can do as I suggested. However, if it is always just the last character in the field, then your substring is perfectly valid as well.
by chulett
Tue Feb 19, 2008 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quotes added in writing to a sequential file
Replies: 6
Views: 1349

Nothing is wrong. Quotes are normal for string data in sequential file data and should not be causing problems in your 'downstream' processing. The data viewer doesn't show them to you because they are delimiters, not part of the data. If for some reason you really don't want them in the file, chang...
by chulett
Tue Feb 19, 2008 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Master Sequence is not restartable
Replies: 19
Views: 5587

Your 'Master Sequence' must abort to trigger the restartability. You need to make sure that happens, either using the 'Automatically handle' option or specific triggers and stages.
by chulett
Tue Feb 19, 2008 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting start date and end date
Replies: 4
Views: 1681

sree569 also wrote:Thanks for your reply,but i can see only DSJobStartTimestamp for start date but i didnot find any for endtimestamp

Check again. The online help for DSGetJobInfo lists the correct InfoType for this, the equivalent should exist from the command line as well.
by chulett
Tue Feb 19, 2008 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming new line character
Replies: 5
Views: 1172

Not sure how much more clear I can be. LF = 'Line Feed' = hex a = decimal 10 = 'new line'. If that's what your character is, then what was posted should work. If it isn't, then you'll need to post something more specific than it being 'some unusual character'. Read the online help for the CHAR() fun...
by chulett
Tue Feb 19, 2008 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in compiling the job
Replies: 6
Views: 1409

System Variables can be used anywhere, any time. Check the online help, they are good things to get to know.