Answers to questions:-
Did you modify the SQL at table creation regarding this ?
I added an index (unique I think) to the sobax_id column (as I will need to search on this column), but when I got this error I dropped the index and tried again (but still got the violation).
Did you delete it via JChemManager ?
First time no, I just ran a delete statement (I do all my work commandline, I'm not sure the version I'm using allows you to delete via jcman). When that didn't work of course I then went and did the delete via JChemManager desktop app, the behaviour was the same, I still got the same error message.
- The import data contains the value more than once, so conflict occurs even after deleting it before
This is quite possible when I run the full process with all the data, but for this testing I'm just using a small file with 10 rows, all of which are unique. If I run the import through twice I don't get errors, I get the 'Structure already exists' message which is fine.
- You have deleted the row, but did not commit, so other connections do not see the change.
The database has autocommit set to on.
Here are the table details (sobax_id is the id column used):
/*Column Information For - sobax.test_table*/
---------------------------------------------
Field Type Collation Null Key Default Extra Privileges Comment
------------------- ------------ ----------------- ------ ------ ------- -------------- ------------------------------- -------
cd_id int(11) (NULL) NO PRI (NULL) auto_increment select,insert,update,references
cd_structure mediumblob (NULL) NO (NULL) select,insert,update,references
cd_smiles text latin1_swedish_ci YES (NULL) select,insert,update,references
cd_formula varchar(100) latin1_swedish_ci YES (NULL) select,insert,update,references
cd_sortable_formula varchar(255) latin1_swedish_ci YES MUL (NULL) select,insert,update,references
cd_molweight double (NULL) YES (NULL) select,insert,update,references
cd_hash int(11) (NULL) NO MUL (NULL) select,insert,update,references
cd_flags varchar(20) latin1_swedish_ci YES (NULL) select,insert,update,references
cd_timestamp datetime (NULL) NO (NULL) select,insert,update,references
cd_pre_calculated tinyint(1) (NULL) NO MUL 0 select,insert,update,references
cd_fp1 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp2 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp3 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp4 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp5 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp6 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp7 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp8 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp9 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp10 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp11 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp12 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp13 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp14 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp15 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp16 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp17 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp18 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp19 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp20 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp21 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp22 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp23 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp24 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp25 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp26 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp27 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp28 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp29 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp30 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp31 int(11) (NULL) NO (NULL) select,insert,update,references
cd_fp32 int(11) (NULL) NO (NULL) select,insert,update,references
sobax_id varchar(50) latin1_swedish_ci NO (NULL) select,insert,update,references
psmi mediumtext latin1_swedish_ci YES (NULL) select,insert,update,references
pism mediumtext latin1_swedish_ci YES (NULL) select,insert,update,references
pmw float (NULL) YES (NULL) select,insert,update,references
pmf mediumtext latin1_swedish_ci YES (NULL) select,insert,update,references
donor bigint(20) (NULL) YES (NULL) select,insert,update,references
acceptor bigint(20) (NULL) YES (NULL) select,insert,update,references
clogp float (NULL) YES (NULL) select,insert,update,references
rot_bond bigint(20) (NULL) YES (NULL) select,insert,update,references
heavy_atoms bigint(20) (NULL) YES (NULL) select,insert,update,references
prefilter mediumtext latin1_swedish_ci YES (NULL) select,insert,update,references
inchi_key mediumtext latin1_swedish_ci YES (NULL) select,insert,update,references
/*Index Information For - sobax.test_table*/
--------------------------------------------
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
---------- ---------- ------------- ------------ ------------------- --------- ----------- -------- ------ ------ ---------- -------
test_table 0 PRIMARY 1 cd_id A 21172864 (NULL) (NULL) BTREE
test_table 1 test_table_hx 1 cd_hash A (NULL) (NULL) (NULL) BTREE
test_table 1 test_table_fx 1 cd_sortable_formula A (NULL) (NULL) (NULL) YES BTREE
test_table 1 test_table_px 1 cd_pre_calculated A (NULL) (NULL) (NULL) BTREE
/*DDL Information For - sobax.test_table*/
------------------------------------------
Table Create Table
---------- ----------------------------------------------------------------
test_table CREATE TABLE `test_table` (
`cd_id` int(11) NOT NULL AUTO_INCREMENT,
`cd_structure` mediumblob NOT NULL,
`cd_smiles` text,
`cd_formula` varchar(100) DEFAULT NULL,
`cd_sortable_formula` varchar(255) DEFAULT NULL,
`cd_molweight` double DEFAULT NULL,
`cd_hash` int(11) NOT NULL,
`cd_flags` varchar(20) DEFAULT NULL,
`cd_timestamp` datetime NOT NULL,
`cd_pre_calculated` tinyint(1) NOT NULL DEFAULT '0',
`cd_fp1` int(11) NOT NULL,
`cd_fp2` int(11) NOT NULL,
`cd_fp3` int(11) NOT NULL,
`cd_fp4` int(11) NOT NULL,
`cd_fp5` int(11) NOT NULL,
`cd_fp6` int(11) NOT NULL,
`cd_fp7` int(11) NOT NULL,
`cd_fp8` int(11) NOT NULL,
`cd_fp9` int(11) NOT NULL,
`cd_fp10` int(11) NOT NULL,
`cd_fp11` int(11) NOT NULL,
`cd_fp12` int(11) NOT NULL,
`cd_fp13` int(11) NOT NULL,
`cd_fp14` int(11) NOT NULL,
`cd_fp15` int(11) NOT NULL,
`cd_fp16` int(11) NOT NULL,
`cd_fp17` int(11) NOT NULL,
`cd_fp18` int(11) NOT NULL,
`cd_fp19` int(11) NOT NULL,
`cd_fp20` int(11) NOT NULL,
`cd_fp21` int(11) NOT NULL,
`cd_fp22` int(11) NOT NULL,
`cd_fp23` int(11) NOT NULL,
`cd_fp24` int(11) NOT NULL,
`cd_fp25` int(11) NOT NULL,
`cd_fp26` int(11) NOT NULL,
`cd_fp27` int(11) NOT NULL,
`cd_fp28` int(11) NOT NULL,
`cd_fp29` int(11) NOT NULL,
`cd_fp30` int(11) NOT NULL,
`cd_fp31` int(11) NOT NULL,
`cd_fp32` int(11) NOT NULL,
`sobax_id` varchar(50) NOT NULL,
`psmi` mediumtext,
`pism` mediumtext,
`pmw` float DEFAULT NULL,
`pmf` mediumtext,
`donor` bigint(20) DEFAULT NULL,
`acceptor` bigint(20) DEFAULT NULL,
`clogp` float DEFAULT NULL,
`rot_bond` bigint(20) DEFAULT NULL,
`heavy_atoms` bigint(20) DEFAULT NULL,
`prefilter` mediumtext,
`inchi_key` mediumtext,
PRIMARY KEY (`cd_id`),
KEY `test_table_hx` (`cd_hash`),
KEY `test_table_fx` (`cd_sortable_formula`),
KEY `test_table_px` (`cd_pre_calculated`)
) ENGINE=MyISAM AUTO_INCREMENT=21172892 DEFAULT CHARSET=latin1