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

error while writing to ESDS file


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kalukakkad

New User


Joined: 10 Mar 2005
Posts: 81

PostPosted: Mon May 07, 2007 8:10 pm
Reply with quote

I have defined ESDS file as

SELECT ESDSFL ASSIGN TO ESDSFILE
ORGANIZATION IS SEQUENTIAL
ACCESS MODE IS SEQUENTIAL
FILE STATUS IS ESDSFL-CODE.
.
.
.
OPEN OUTPUT ESDSFL.

I am getting the following error.

IGZ0200W A file attribute mismatch was detected. File ESDSFL in program COBLESDS was defined as a physical sequential file and the file specified in the ASSIGN clause was a VSAM data set.

Can someone help to resolve it.
Back to top
View user's profile Send private message
mkk157

Active User


Joined: 17 May 2006
Posts: 310

PostPosted: Mon May 07, 2007 8:19 pm
Reply with quote

Hi kalukakkad,


"A file attribute mismatch was detected. File ESDSFL in program COBLESDS was defined as a physical sequential file and the file specified in the ASSIGN clause was a VSAM data set. "


For VSAM Files U need to make the SELECT statement as

SELECT ESDSFL ASSIGN TO AS-ESDSFILE Here AS means Address Sequential. Make this change and compile again.
Back to top
View user's profile Send private message
kalukakkad

New User


Joined: 10 Mar 2005
Posts: 81

PostPosted: Mon May 07, 2007 8:22 pm
Reply with quote

Thanks a lot mkk157 for your quick response. The program is working fine now.
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Mon May 07, 2007 8:22 pm
Reply with quote

I think you have to specify:
SELECT ESDSFL ASSIGN TO AS-ESDSFILE
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
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 Error to read log with rexx CLIST & REXX 11
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Error when install DB2 DB2 2
Search our Forums:

Back to Top