PUT_LINE procedure
Translation reference for UTL_FILE.PUT_LINE.
Last updated
Translation reference for UTL_FILE.PUT_LINE.
Last updated
This procedure writes the text string stored in the buffer parameter to the open file identified by the file handle. ()
The UTL_FILE
schema must be created.
BUFFER: Text buffer that contains the text to be written to the file.
If the OPEN_MODE
of the file is write (w) or append (a), it inserts the buffer into FOPEN_TABLES_LINES
, but if the OPEN_MODE
is read (r), it throws the File_is_read_only
exception.
Note:
Oracle
AUTOFLUSH
parameter is not used. SSC-FDM-OR0036: Unnecessary built-in packages parameters.
FILE: Active file handler returned from the call to
This procedure uses the FOPEN_TABLES_LINES
table created in the procedure.
To use this procedure you must open the file with
To run this example, see
The Oracle Built-in package procedure has the AUTOFLUSH
parameter, but in the Snowscripting procedure it is removed because it is not used.
: CUSTOM UDF INSERTED.
: Data Type Not Recognized.