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

delete a record in sequential file


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
priya_gmain

New User


Joined: 18 Sep 2006
Posts: 7

PostPosted: Mon Oct 16, 2006 2:05 pm
Reply with quote

Hi,

Plz let me know how to delete a record in sequential file and rewrite the file in a cobol pgm.
Back to top
View user's profile Send private message
meetreks

New User


Joined: 28 Sep 2006
Posts: 26
Location: Edinburgh

PostPosted: Mon Oct 16, 2006 2:46 pm
Reply with quote

Hi,

You cannot possibly delete a record in a sequential file. THe DELETE keyword is only of Indexed files,which can be deleted.

Hope this helps.
Back to top
View user's profile Send private message
priya_gmain

New User


Joined: 18 Sep 2006
Posts: 7

PostPosted: Mon Oct 16, 2006 5:32 pm
Reply with quote

Ya I know that ......But in an interview I have been asked that if there is a requirement to delete a record in sequential file and rewrite .....how do u do that..........
Back to top
View user's profile Send private message
nachiks

New User


Joined: 08 Apr 2006
Posts: 1
Location: chennai

PostPosted: Tue Oct 17, 2006 6:26 pm
Reply with quote

HI,


We cannot delete records using DELETE in sequential files but we can logically delete the records.What we can do is we can rewite a record with SPACES. It looks like this

Code:
BTECH124 A---
BTECH125 B---

BTECH127 C---

TRY THIS

Code:
DECLARE A FILE
01 REC.
02 EMPNO PIC X(15).
02----
02----

IN WSS.
DECLARE A "77 EMPLOYEENO PIC A(15). "

ACCEPT EMPLOYEENO.

READ SEQUENTIAL-FILE <eof>     /* NOW IT READS ALL RECORDS
IF  EMPLOYEENO  =  EMPNO         /*IF CONDITIONS PICKS A REC.
MOVE SPACES TO REC.               /* SPACES ARE MOVED TO THAT REC
REWRITE REC.                           /* NOW REWITING WILL MAKE SPACES


PLS CHEK
BYE
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 -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts DELETE SPUFI DB2 1
Search our Forums:

Back to Top