Glossary

Minimize the number of I/O operations

SQL calls, VSAM reads, IMS DL/I calls 2. **Avoid table scans** — ensure WHERE clauses use indexed columns 3. **Commit early** — release locks as soon as possible 4. **Avoid GETMAIN/FREEMAIN in loops** — allocate working storage once 5. **Keep transaction scope small** — do only what is necessary for

Learn More

Related Terms