Search found 57 matches

by goriparthi
Mon Nov 27, 2006 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

HI Guys hope u all had a good thanksgiving, Here is what i have come up with for scheduling a job last friday of the month copy this into a file named test.txt: BEGIN { x=0 } { if(NF >=6) x=$6 } END {print x} This into a Script: lastfriday=`cal |awk -f test.txt` currdate=`date +"%e"` if [ ...
by goriparthi
Tue Nov 21, 2006 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

Scheduling of a Job

Thanks guys , I will have to start working on that routine as craig mentioned earlier.Yes My Crontab is not supporting the 6#3 .I got this by browsing google.
I will work on that routine and let you all know


Thanks
Rajesh
by goriparthi
Tue Nov 21, 2006 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

Scheduling of a Job

This entry should create a dummy file every third friday at 10:15 am.
But i am not sure of this part ? * 6#3 ,it doesn't like the # symbol or something.I got this code by browsing google unix forums.Please explain



Thanks
Raj
by goriparthi
Tue Nov 21, 2006 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

Scheduling of a Job

Guys, Finally i thoought of creating a file in unix and check for file every friday and this files will be only created on third friday and last friday with different names and chekinig these files my jobs will get triggered . I am doing this by altering my crontab file and creating these files. cod...
by goriparthi
Mon Nov 20, 2006 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

Scheduling of a Job

Can i do it with in a sequencer by using a wait for file activity or a execute command stage , but if i use the execute command then i should know when exactly is the last friday of the month from unix dynamically . and trigger the job every friday and the execute command should check wether its las...
by goriparthi
Mon Nov 20, 2006 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of a Job
Replies: 15
Views: 4842

Scheduling of a Job

i want to schedule a job every third and last friday of each month,we are only using datastage director to schedule jobs . Is there a way to run the jobs accordingly? Any ideas Please!


Thanks

Raj
by goriparthi
Fri Nov 17, 2006 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UNLOCK JOB AND VOC FILE
Replies: 6
Views: 7965

UNLOCK JOB AND VOC FILE

chulett wrote:NO NEED TO SHOUT.

OK CRAIG

Thanks
Raj
by goriparthi
Thu Nov 16, 2006 11:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UNLOCK JOB AND VOC FILE
Replies: 6
Views: 7965

UNLOCK JOB AND VOC FILE

Thanks RAY I CORRECTED IT AND NOW I CAN UNLOCK JOBS. SET-FILE and SETFILE are different commands. The "TO" is not part of the command, it is displayed as a prompt requiring further input. Execute the DS.TOOLS menu instead, and use the unlock facilities therein. This saves you fiddling with...
by goriparthi
Thu Nov 16, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UNLOCK JOB AND VOC FILE
Replies: 6
Views: 7965

UNLOCK JOB AND VOC FILE

HI I HAVE JOB WHICH IS GOT LOCKED AND I WANT TO UNLOCK IT I FOLLOWED THE SAME PROCEDURE WHIC1) Login in into the Datastage server box from the command line as datastage adminstrator 2) goto Home directory i.e DSEngine directory 3) enter . ./dsenv 4) enter bin/uv or enter bin/dssh 5) LOGTO Project [p...
by goriparthi
Mon Oct 30, 2006 7:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal to COMP3
Replies: 18
Views: 10585

DECIMAL TO COMP3

Hi Carter, Thanks a lot for your reply, Can you please help me out in this .I am desperatley looking for this solution,your response is highly appreciated. Thanks Raj. I agree that you should push back. But if you do have to create COMP-3, it's not really that bad (I've done it). Let us know. Carter
by goriparthi
Mon Oct 30, 2006 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal to COMP3
Replies: 18
Views: 10585

DECIMAL TO COMP3

Hi, In my case i just need to give a feed to mainframes in a sequential file from our datawarehouse.So i need to convert this from a decimal to comp3 and give that value in a sequential file. Thanks Raj If you just pass the decimal into comp-3 field in the mainframe table, what error does it give?
by goriparthi
Mon Oct 30, 2006 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal to COMP3
Replies: 18
Views: 10585

Hi Guys,

Can anyone share their experience in this issue.



Thanks
Raj
by goriparthi
Sat Oct 28, 2006 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal to COMP3
Replies: 18
Views: 10585

Decimal to COMP3

Hi Guys, I have a requirement to convert decimal values to comp3 and send them to mainframes, i browsed through and couldnt find the solution any where there are previous topics on this but nothing got resolved in them , Can anyone please help me if they have done the same thing earlier it would me ...
by goriparthi
Fri Oct 27, 2006 11:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence error
Replies: 12
Views: 3403

Thanks a lot , It worked out for me , Basically i am using aggregator to do a group by after the result set but now i am doing it in the database itself so need of aggregator but i will continue investigating with the aggregator as craig mentioned. Thanks Raj In your query, if you add order by claus...
by goriparthi
Thu Oct 26, 2006 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence error
Replies: 12
Views: 3403

Thanks Kumar I Will try this out. In your query, if you add order by clause before the union operator then I think it will change the order of output. In DB2 at least it works like this. So a query (select * from emp where DeptNo=10 order by empno) UNION (select * from emp where DeptNo=20 order by e...