Search found 19 matches

by zbethem
Thu Apr 06, 2006 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: skip header and tail while reading from seq file
Replies: 14
Views: 8635

Re: skip header and tail while reading from seq file

n00b here too @INROWNUM looks like the trick, but perhaps you could pair it with @OUTROWNUM I'd build a job like this.. In transformer, add a constraint. The constraint would be something like: @INROWNUM > 1 and @INROWNUM <> @OUTROWNUM If the constraint evaluates to true, the output link should have...
by zbethem
Tue Mar 28, 2006 12:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: please list out active and passive stages in datastage
Replies: 8
Views: 15517

ray.wurlod wrote:Please check the following.

FTP stage

ORABULK stage
both are passive
by zbethem
Wed Mar 22, 2006 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI Load .. Tricks to Truncate before Load?
Replies: 4
Views: 1924

You can use the Update action of 'Truncate table then insert' to create a job that just does the truncate for you. It can then be included in your jobstream (via a Sequencer job, for instance) just before your bulk load job... We ended up using the 'Manual Mode' of the bulk load stage to do this. T...
by zbethem
Mon Mar 20, 2006 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI Load .. Tricks to Truncate before Load?
Replies: 4
Views: 1924

ORAOCI Load .. Tricks to Truncate before Load?

From my reading of the forums, use of the Oracle OCI Load is the preferred method for fast performance. I'm looking to use this method to load several "large" staging tables. My staging tables, however, are temporary from month to month. I'd like to clear the data before the load. Looking ...