Multiple choice technology databases

What is the default value of the variable max_linesize in the function FOPEN?

  1. 32767

  2. 0

  3. 1024

  4. 1

  5. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The default max_linesize parameter in UTL_FILE.FOPEN is 1024 bytes. This parameter controls the maximum line length that can be written to or read from a file. It can be explicitly set up to 32767 bytes if needed for longer lines.