A SAMPLE table has only one column ID of type int, default null.
SAMPLE
ID
int
In Oracle when I do:
insert into SAMPLE (ID
You can't insert a 'string' into a int column. Oracle must be just handling that for you.
Just try inserting NULL if that's what you need.
insert into SAMPLE (ID) values (NULL);