Create table temp(col raw(40));
Insert into temp values(0x02900000AB45GH38);
Error: ORA-00917: missing comma
Create table temp(col raw(40));
Insert into temp values(0x02900000AB45GH38);
Error: ORA-00917: missing comma
First, your data is not correct hex - "GH" should not be there.
Once you get your data right,
Just pass hex as varchar -
Insert into temp values('0290')
It is same as -
Insert into temp values(hextoraw('0290'))