Create TABLE long_claw
(
"name" varchar2(10),
phno number(10),
clg_docs blob
)
partition by hash(phno);
insert into pepe.long_claw("name",phno,clg_docs)
values('Satyajit',9176788770,to_lob('ceb'));
When I tried to execute the insert statement I got the following error:
Error starting at line : 9 in command -
insert into pepe.long_claw("name",phno,clg_docs) values('Satyajit',9176788770,to_lob('ceb'))
Error at Command Line : 10 Column : 30
Error report -
SQL Error: ORA-00932: inconsistent datatypes: expected - got CHAR 00932. 00000 - "inconsistent datatypes: expected %s got %s"
*Cause:
*Action:
I need some help here.