WRITEAPPEND v13
The WRITEAPPEND procedure provides the capability to add data to the end of a large object.
WRITEAPPEND(<lob_loc> IN OUT { BLOB | CLOB },
<amount> BINARY_INTEGER, <buffer> { RAW | VARCHAR2 })Parameters
lob_loc
Large object locator of the large object to which data is to be appended.
amount
Number of bytes/characters from buffer to be appended the large object.
buffer
Data to be appended to the large object. If lob_loc is a BLOB, then buffer must be RAW. If lob_loc is a CLOB, then buffer must be VARCHAR2.