How can I insert big data (~ 100000 hex-digits) into the Blob field in Oracle 11 , using only the sql command (without any external data with load cluase or such).
update tablename set fieldname='AA';
Jobs - 1 byte;
update tablename set fieldname='AA...(4000 hex-digits)...AA';
does not. Niether Concat helps; strings cannot be more than 4000 characters. Is there any other way using only sql command?
source share