vsam和qsam的区别
vsam:n. 虚拟存储奇取法
例句:
(1)This program accepts an operation code and a record key as inputs, then reads the VSAM dataset and returns the record back to CICS.
这个程序接受一个操作码和一个记录键作为输入,然后读取 VSAM 数据集并将记录返回给 CICS。
(2)It holds a list of books in a VSAM file to which entries can be added or removed, and allows books to be marked as borrowed or returned.
它在 VSAM 文件中包含一个图书列表,您可以在这个列表上添加、删除条目,或将图书标记为已借出或已返还。
qsam:abbr. 顺序存取法
例句:
(1)To improve performance, QSAM reads these records into storage before they are requested. This is called queued access.
为了提高效率,QSAM会在这些记录被请求前将其读取到存储器中,这叫做队列存取。
(2)The stored procedure program can access DB2 data as well as traditional non-DB2 resources such as QSAM and VSAM data sets, message queues, CICS programs, IMS transactions and databases.
存储过程程序可以访问 DB2 数据和传统的非 DB2 资源,比如 QSAM 和 VSAM 数据集、消息队列、CICS 程序、IMS 事务和数据库。
vsam和qsam的优势
VSAM是把用户的逻辑数据(应用处理程序)与辅助存储器中的物理数据相连接,从而为程序员在数据管理中提供方便,程序员可根据不同的需要选择不同的数据组织。
在QSAM方式 下,系统会将一条记录与其他记录一起组织起来. QSAM基于记录的顺序来预期对它的需求.
标签:vsam,qsam,区别