I am working on existing project and need to prepare DML for oracle database. But i am unable to prepare for Insert statement for Blob data due to huge size which is grater than 4000 bytes. Can any one help me?
N.B: I got this error, ORA-06550: String literal too lang.
Only INSERT Statement, no java programe. I just need it to prepare DML like insert statement.
My INSERT STATEMENT:
INSERT INTO APP_PROF('ID', 'IMAGE') VALUES('2', TO_BLOB('4654655665....'))
This Image blob data is greater than 45000bytes
Thanks in advance.