Search found 3 matches

by hash33
Wed Jun 20, 2012 2:57 am
Forum: VSAM - File system
Topic: SORT
Replies: 5
Views: 12552

've never worked enough with IAM to understand how buffers are handled with it. the traditional VSAM and sequential file defaults sometimes enable for giant enhancements in EXCP counts and run times by adding buffers, however IAM might not -- you'll have to see the manual. and can use for help
by hash33
Mon Jun 18, 2012 11:47 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: What is the difference between Static and Dynamic Binding?
Replies: 13
Views: 21195

Static binding and Dynamic binding

Static binding is where the linker copies the referred to as operate into the program's executable image from the suitable library and resolves the references to the operate at compile/link time. The program contains a duplicate of the library operate and doesn't got to load it at run time. Dynamic ...
by hash33
Mon Jun 18, 2012 11:37 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: how to load data from vsam to db2 table
Replies: 7
Views: 10780

cobol program

Declare a variable in your cobol program like that
01 ws-x-amount pic 9(7)v99 comp-3.
and
move your vsam file field data to the above field
and then set the above mention field into the db2 table. It will be
work.