Search found 42189 matches

by chulett
Sat Jul 17, 2004 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameters for columns
Replies: 14
Views: 6835

Just an FYI... you can go back and edit your post to correct spelling or other contextual errors rather than post a correction. Trust me, it comes it handy. :wink: You'll see it as an option at the top of the posts that are yours, along with the other options like 'Reply with quote'.
by chulett
Sat Jul 17, 2004 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters in JobControl
Replies: 2
Views: 908

By 'batch job' do you mean a Sequencer Job or hand coded Job Control? In any case, the only part of the process that will 'prompt' you for values is the master / outer / batch job itself - and that's only if you run it by hand. It then has the responsibility for assigning values to the parameters u...
by chulett
Sat Jul 17, 2004 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Stage variables in After Stage job
Replies: 2
Views: 956

Hmmm... no. Or at least not directly. A couple of alternatives off the top of my head: Pass the Stage Variable out of the job using DSSetUserStatus. Write a routine to 'wrapper' the call to the function and other to execute your shell script and have the value it needs passed in as an argument. Use ...
by chulett
Fri Jul 16, 2004 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MIn & MAX features
Replies: 5
Views: 1234

Found this in the Release Notes for 7.5:

End-of-Data Row in IMS Stages
-----------------------------
The IMS stage now includes the option to add an end-of-data indicator after the last row is processed on the output link.

Why don't they spread a little more of that around, eh? :wink:
by chulett
Fri Jul 16, 2004 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working with Oracle's Long Raw data type
Replies: 3
Views: 1582

Oh, this message! You must have been planning ahead.

I'd be curious what you mean by 'compressed by Oracle'. :?
by chulett
Fri Jul 16, 2004 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: YOU DON'T NEED TRAINING
Replies: 22
Views: 5019

Errr... what other post? All I could find was one from April that Ray took a whack at. If you need more help you need to come back and continue the discussion! :wink:
by chulett
Fri Jul 16, 2004 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SYSDATE
Replies: 1
Views: 807

It's already generated for you. Check out the System Variables @DATE and @TIME which represent the date/time that the 'job' started. Note that this is a constant value and would be used when you want to timestamp every row identically for the same unit of work. Also note that Best Practice say: use ...
by chulett
Fri Jul 16, 2004 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading from Hash File in Local Universe
Replies: 8
Views: 1764

I knew I should have mentioned that bit about the VOC pointer. :? Figured it was more of an 'advanced topic', so decided to leave it out.

I too have a routine to create one, if needed, but wasn't aware of the sorting trick you mentioned. Thanks for that! :wink:
by chulett
Fri Jul 16, 2004 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to put Plugin in Project Template
Replies: 4
Views: 1312

I'd suggest going back and re-doing this using the Server installation / upgrade methodology rather than by using the package installer. Just found this in the 7.5 Release Notes: If the installation program detects plug-ins that were installed at a previous release, it upgrades them automatically. I...
by chulett
Fri Jul 16, 2004 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change to operation of dsjob on Unix
Replies: 2
Views: 1021

Change to operation of dsjob on Unix

Just got my hands on 7.5 and found this in the Release Notes: Change to operation of dsjob on Unix: ------------------------------------------------------- dsjob on Unix now outputs the return code to the standard error stream in all circumstances (this is true of the Windows version as well). On Un...
by chulett
Fri Jul 16, 2004 10:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting a Row
Replies: 7
Views: 1500

I doubt it. Latest version is 7.5 btw.

You can do it in your version, it's just not automagic. With 'only' four columns to pivot it won't be that bad.
by chulett
Fri Jul 16, 2004 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting a Row
Replies: 7
Views: 1500

Upgrade? :lol:

Build them yourself - write out four links from your Transformer stage. Either that or use a big goofy 'union' in your source query to bring four records into the job for every row in the source.
by chulett
Fri Jul 16, 2004 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading from Hash File in Local Universe
Replies: 8
Views: 1764

However, it's perfectly OK to use a hashed file stage to feed a stream input link. You will note, in this case, that the Selection tab is enabled, so that you can restrict the rows selected. Note that this is only true if the hash file was created in your Project / Account. A pathed hash does not g...
by chulett
Fri Jul 16, 2004 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source System showing vachar2 as Nvarchar in Manager
Replies: 9
Views: 3938

Pulled from the 'readme', 7.1r1 for HP/UX: New at Release 7.1 : Dynamic Relational Stage (DRS) ------------------------------ The Dynamic Relational Stage (DRS) provides users with the ability to access multiple vendor's relational databases for both reading and writing using native database client ...
by chulett
Fri Jul 16, 2004 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Locking of Table
Replies: 13
Views: 3428

Kindly let us know if there is any round about way to handle Update and Insert in a single job. It's already been mentioned by Sara123. I've used it extensively and don't have any 'locking' issues. The key is to use two links to a single target stage, not two seperate target stages. There may still...