Well the tables are not exsisting to start with. They will get created during the build process same with the sequence and all other constraints. I have more the feeling that its trying to run the same sql statement twice into the same table such as:
insert into bid values ("1", "foo", "bar");
insert into bid values ("1", "bar", "foo");
where 1 is the primary key and therefore it fails. The sequence stops at 21 at each run. I'm just wondering if there are others to run into the same problem. It's a quite common installation (W2K, Oracle 8i, Hibernate 3.1). And its the blank installation and I'm not able to get hibernate up and running in the first place unless I get over the build process.
M
|