Re: VSAM LSR

2010-01-04 Thread John Kington
Paul, I have an application that has several VSAM datasets. These datasets currently use NSR (Non Shared Resources). The Application is written in assembler. I want to switch some of the Files to use LSR. If two files share a buffer pool do I need to concern my self with the contents of the

Re: VSAM LSR

2009-12-28 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of esst...@juno.com I have an application that has several VSAM datasets. These datasets currently use NSR (Non Shared Resources). The Application is written in assembler. I want to switch some of the Files to use

Re: VSAM LSR

2009-12-28 Thread Larry Crilley
The access method (VSAM) manages the buffer pool and buffer lookasides. You just issue the GET(s). You must build the LSR pool before the OPEN of each VSAM file. If the datasets have different data/index CISIZES, you will need to build the pool accordingly. Also, if these are KSDS (indexed)

Re: VSAM LSR

2009-12-28 Thread Hal Merritt
, 2009 12:49 PM To: IBM-MAIN@bama.ua.edu Subject: Re: VSAM LSR The access method (VSAM) manages the buffer pool and buffer lookasides. You just issue the GET(s). You must build the LSR pool before the OPEN of each VSAM file. If the datasets have different data/index CISIZES, you will need