View previous topic :: View next topic |
Author |
Message |
sujatharamana Beginner
Joined: 14 Jan 2003 Posts: 3 Topics: 1 Location: IL,USA
|
Posted: Fri Apr 04, 2003 4:57 pm Post subject: VSAM Open Problem |
|
|
In cics region vsam cluster is not opening
I tried to open cluster using
CEMT set file('file1')
After that i tried to overtype the attributes, but I
am getting the message 'open/close' failed |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Fri Apr 04, 2003 5:39 pm Post subject: |
|
|
Sujatharamana,
Are you sure that the file specified as the File1 actually exists.? You would get the OPEN/CLOSE FAILED message if your file was not defined.
Try this:
Code: |
CEMT S FI(FILE1) AL OP EN
|
This command will open file and enabled for use.check this link for detailed explanation of CEMT.
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DFHA7P03/11.0?DT=20021018154625
Hope this helps...
cheers
kolusu |
|
Back to top |
|
|
prakal Beginner
Joined: 14 Mar 2003 Posts: 22 Topics: 1
|
Posted: Sun Apr 06, 2003 10:56 am Post subject: |
|
|
Sujatharamana,
Adding to Kolusu's explanation, if the file that you are trying to open in the CICS region is being used in another CICS region or if somebody else is using this file you will still get a OPEN/CLOSE FAILED message.
Prakal. |
|
Back to top |
|
|
sujatharamana Beginner
Joined: 14 Jan 2003 Posts: 3 Topics: 1 Location: IL,USA
|
Posted: Tue Apr 08, 2003 10:51 am Post subject: |
|
|
kolusu, prakal, thanks for resposnses |
|
Back to top |
|
|
|
|