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

Changes required to use VSAM as a CMT and UMT


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Tue Aug 27, 2013 2:20 pm
Reply with quote

Team,

I would like to know if a KSDS is needs to be used as a UMT/CMT then where all we need to make the changes as far as system parameters are concerned ?
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Wed Aug 28, 2013 2:05 am
Reply with quote

Check the necessary parameters via the RDO/CEDA FILE definition, which are normally defined by your CICS Sysprog and/or Tech Services personnel.

Review the associated "CICS System Definition Guide" for your current CICS version/release for further explanation.
Back to top
View user's profile Send private message
colin777

New User


Joined: 06 Jun 2013
Posts: 19
Location: Singapore

PostPosted: Wed Aug 28, 2013 3:07 pm
Reply with quote

Hi,

In addition to Bill's comments, make sure the application can support the Data Table.

For a User Maintained Data Table (UMT), the full File Control API commands are not available. For a CICS startup, it opens the UMT VSAM file, reads all the records into a Data Space and then closes it. This file can be taken to other systems that might also want access. This type of approach really suits an ESDS structure that is needed for Read-Only.

For a CICS Maintained Data Table (CMT), all the File Control commands are available, as in Delete, Update and Write. This means that CICS will keep all changes made to the Data Table in sync with the source dataset.

If the CMT is needed by multiple AORs, then consider a Shared Data Table for your CMT, this is much faster than using a File Owning Region and the mirror task.

CICS will allocate the size of the Data Space based on the MAXNUMRECS option in the File Control entry. Be careful if you take the NOLIMIT default option, as it could affect your Paging subsystem.

HTH

Colin777
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Thu Aug 29, 2013 12:08 pm
Reply with quote

Thank you Bill and Colin for the useful information.
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts Merge two VSAM KSDS files into third ... JCL & VSAM 6
No new posts CVDA value for RRDS VSAM dataset. CICS 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
No new posts Open VSAM File in IMS DC Region - DFS... IMS DB/DC 0
Search our Forums:

Back to Top