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
Use NULL instead.
insert into SAMPLE (ID) values (NULL);