Hi RB,

I used this proc to insert data into the table before I tried appending.

Code:
CREATE OR REPLACE PROCEDURE Insertblob( BLOBPARAMETER BLOB) AS
BEGIN
INSERT INTO BLOBTABLE VALUES(1,BLOBPARAMETER);
END;
/
I couldnt go ahead with your suggestion of using RAW while inserting as the front end sends data as a BLOB to the proc.


Thanks a lot...
Sam