Search found 6797 matches

by DSguru2B
Tue Nov 28, 2006 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timeout in DS
Replies: 13
Views: 2670

Time out for what in datastage.
by DSguru2B
Tue Nov 28, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a sequencer normally
Replies: 11
Views: 2903

As Craig pointed out you can. But thats only part of your test, the second part is the time 8:00pm I wrote a quick little routine for you. It checks for existence of end file and checks for time. If file exists or time equals or exceeds 8:00pm, it will return 1 else 0. Depending upon that you can br...
by DSguru2B
Tue Nov 28, 2006 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a sequencer normally
Replies: 11
Views: 2903

So now, either the arrival of END file or arrival of 8 pm will terminate the sequence job. Well i hate to break it to you but you will have to use some sort of Basic coding to achieve that. Here's what i would do. Within start loop and end loop have a wait for file activity that waits for the trigge...
by DSguru2B
Tue Nov 28, 2006 1:50 pm
Forum: Site/Forum
Topic: Do you plan upgrading to the new 8 version (Hawk)
Replies: 11
Views: 6457

I never did believe in the saying "Ignorance is Bliss" :wink:
by DSguru2B
Tue Nov 28, 2006 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a sequencer normally
Replies: 11
Views: 2903

If thats the case then my apologies. Just couldnt get you the first time :oops:
by DSguru2B
Tue Nov 28, 2006 1:33 pm
Forum: Site/Forum
Topic: Do you plan upgrading to the new 8 version (Hawk)
Replies: 11
Views: 6457

ray.wurlod wrote:"server jobs would all become read-only" in Hawk.


Wow. Thats a pretty bold statement to make, for any rep. And a scary one for huge server edition fans.
by DSguru2B
Tue Nov 28, 2006 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we pass Fieldname as parameter within a DRS Stage?
Replies: 1
Views: 520

Thats true. YOu need to put that in the derivation as

Code: Select all

(#$FIELD_NAME#) AS Field_Name


and in the columns provide the name as Field_Name.
by DSguru2B
Tue Nov 28, 2006 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a sequencer normally
Replies: 11
Views: 2903

Still doesnt make sense. Say for example your job is inserting a few hunder thousand records into the database and your end file shows up, how do you want to handle that? You cannot just end the job without aborting it or sending an explicit stop request. I dont think termiinating the job at the ver...
by DSguru2B
Tue Nov 28, 2006 1:16 pm
Forum: Site/Forum
Topic: Do you plan upgrading to the new 8 version (Hawk)
Replies: 11
Views: 6457

I am pretty sure we will be upgrading it to 8.0 as soon as it comes out. Just had a chat with an IBM consultant here at our site. He is trying to get the beta version for a trial. But seems like we will be getting it as soon as it shows up.
by DSguru2B
Tue Nov 28, 2006 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a sequencer normally
Replies: 11
Views: 2903

Re: How to stop a sequencer normally

and the sequencer also should end in a normal mode. What do you mean by normal mode? Do you mean by just end and not continue processing ??? If you force abort the sequence job, it will abort. Not in a normal mode. You need to build your logic in such a way, so that it keeps checking for the arriva...
by DSguru2B
Tue Nov 28, 2006 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Restartability
Replies: 11
Views: 4567

Certainly possible. But nothing out of the box other than commiting at all or none. This methodology has been discussed here before. Try a search. As for the two jobs in the sequence job and this being the second job, that is the basic restartability provided by the sequence job. Its certainly achie...
by DSguru2B
Tue Nov 28, 2006 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp
Replies: 5
Views: 1534

sun786....the OP happens to sit on a windowz box.
by DSguru2B
Mon Nov 27, 2006 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding number of rows in a seq file()
Replies: 9
Views: 2091

If we are using the routine as an After-job subroutine, I guess we can skip the test to check if the file is of zero size, before we can get the DSGetLinkInfo? If no rows have passed through the link, we get the result as zero. Not really. Like the OP said, that he is doing some validations and get...
by DSguru2B
Mon Nov 27, 2006 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL server error
Replies: 2
Views: 717

Can you copy paste the sql your target stage is generating. Something is happening at the 25th column.
by DSguru2B
Mon Nov 27, 2006 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding number of rows in a seq file()
Replies: 9
Views: 2091

Well, yes if you are trying to get the row count inside the transformer and if no rows come thorough it wont be instantiated and hence you wont get any validations done.
You need to handle this is before/after stage subroutine. Maybe test to see if file size is zero then do something.