This shows you the differences between two versions of the page.
— |
force_buffer_to_disk [2018/07/09 10:28] (current) mihael created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Force Buffer to Disk ====== | ||
+ | |||
+ | If a file is declared output only (''usage(*output)'') then the system buffers every written data to the file. Sometimes it is necessary to not buffer the data. There are several ways to do this. | ||
+ | |||
+ | - control option ''BLOCK(*NO)'' (though this means no buffering for **all** declared files) | ||
+ | - file override : ''OVRDBF FILE(TESTFILE) FRCRATIO(1) OVRSCOPE(*JOB)'' | ||
+ | - opcode ''FEOD(n)'' | ||
+ | |||
+ | {{tag>ibm devel rpg}} | ||