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

How can we delete records from a VSAM dataset.


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Abhushan_s

New User


Joined: 28 Jul 2008
Posts: 34
Location: Ahmedabad

PostPosted: Thu Sep 25, 2008 1:14 pm
Reply with quote

Could anyone help me as to how can we Delete Records from a particular VSAM file?
Back to top
View user's profile Send private message
genesis786

Active User


Joined: 28 Sep 2005
Posts: 210
Location: St Katherine's Dock London

PostPosted: Thu Sep 25, 2008 1:20 pm
Reply with quote

you can do that in a number of ways. find out which file operation utility ur shop has and u can just get into the file and delete whatever records u want.
you might have Ditto or MasterCat or FileAid...

you can do it using JCL. u can use something like SELCOPY.

really depends on what ur requirement is. is it just to delete the records once and forget ? or is it some job which will be reusable ?
Back to top
View user's profile Send private message
Abhushan_s

New User


Joined: 28 Jul 2008
Posts: 34
Location: Ahmedabad

PostPosted: Thu Sep 25, 2008 1:28 pm
Reply with quote

Hey thank you!

Actually i wasnt aware of the file-aid option, so was not able to open the dataset as a simple PS is opened.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Sep 25, 2008 1:37 pm
Reply with quote

Abhushan_s wrote:
.. was not able to open the dataset as a simple PS is opened.
You would need a "layout" to open VSAM via FileAid, use "formatted-edit (F2 at my shop)" to edit it.
Back to top
View user's profile Send private message
Nick Jones

New User


Joined: 28 Apr 2009
Posts: 13
Location: UK

PostPosted: Thu Apr 30, 2009 3:02 am
Reply with quote

If I could put forward the case for SELCOPY... (I do work for Compute (Bridgend) Ltd on the SELCOPY help desk, so what would you expect ?) icon_wink.gif

SELCOPY VSAM input (sequentially or direct by KEY/Record number/RBA)supports READ for update. This is achieved by specifying parameter UPDATE (or UPD) on the VSAM data set READ statement.

Once a VSAM data set is opened for update, the SELCOPY DELETE, INSERT and UPDATE operations may be used to delete the last record read, insert a record out of key sequence and update the last record read respectively.

e.g. To conditionally delete a record from a VSAM data set being read sequentially...

Code:
READ INDD  UPD
IF POS ...                  * Test conditions...
  THEN DELETE INDD


For more specific code, you would need to provide us with a more detailed spec.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts DELETE SPUFI DB2 1
No new posts DSNTIAUL driven delete IBM Tools 0
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top