IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Problem in reading a file while Jobs are in parallel run


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
chidambaram

New User


Joined: 16 Oct 2007
Posts: 11
Location: Chennai

PostPosted: Fri Nov 20, 2009 2:44 pm
Reply with quote

Dears,

Can any one suggest me how we can handle the below problem.

My requirement :

I need to read a file in rexx and inside that file I need increment the count by 1.

When I am calling this rexx by the Jobs which are running parralely at same time I am facing a problem that the file is already inuse.

My rexx Pgm:

Address tso "alloc da('"inp_file"') f(indd1) shr"
if rc /= 0 then do
say 'Error in allocating the file' inp_file
return_code = 8
call exit_routine
end
Address tso "execio * diskr indd1 (finis stem" stmnm"."
if rc /= 0 then do
say 'Error in reading the file' inp_file
return_code = 8
call exit_routine
end
Address tso "execio 0 diskr indd1 (finis"
Address tso "free f(indd1)"

Chipu
Back to top
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Fri Nov 20, 2009 3:01 pm
Reply with quote

Why would you want to update a file that is being used in parallel by other programs?

Garry.
Back to top
View user's profile Send private message
chidambaram

New User


Joined: 16 Oct 2007
Posts: 11
Location: Chennai

PostPosted: Fri Nov 20, 2009 3:04 pm
Reply with quote

My reguirement is,

If Jcl calls this rexx program then I need to increment the count by one. So that I can get a count that how many times the rexx program is used in a day.

Thanks,
Chipu
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri Nov 20, 2009 3:48 pm
Reply with quote

You need to be using DISP=OLD processing with the dataset allocation in the JCL, not in the EXEC.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Nov 20, 2009 4:16 pm
Reply with quote

I would like to know the important reason why you would need to know how many times a certain REXX is invoked daily.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Fri Nov 20, 2009 4:17 pm
Reply with quote

there is something that the TS wants to hide/is not telling ...

no way that the posted rexx snippet could cause an OLD disposition

maybe the script is failing because somebody else has the dataset in OLD
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Binary File format getting change whi... All Other Mainframe Topics 5
No new posts How to turn off 'ACTION' SDSF output ... TSO/ISPF 2
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Finding and researching jobs All Other Mainframe Topics 0
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
Search our Forums:

Back to Top