thanks for your reply and the hints.
It looks as both tables are empty and the structure on il_dcl_field_prop and il_dcl_field_prop are nearly identical:
mysql> SELECT * FROM il_dcl_field_prop_b;
Empty set (0.00 sec)
mysql> SELECT * FROM il_dcl_field_prop_s_b;
Empty set (0.00 sec)
mysql> show create table il_dcl_field_prop;
+-------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+-------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| il_dcl_field_prop | CREATE TABLE `il_dcl_field_prop` (
`id` int(11) NOT NULL,
`field_id` int(11) NOT NULL,
`datatype_prop_id` int(11) NOT NULL,
`value` varchar(256) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `i1_idx` (`field_id`),
KEY `i2_idx` (`datatype_prop_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 |
+-------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql> show create table il_dcl_field_prop_b;
+---------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+---------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| il_dcl_field_prop_b | CREATE TABLE `il_dcl_field_prop_b` (
`id` int(11) NOT NULL DEFAULT '0',
`field_id` int(11) NOT NULL DEFAULT '0',
`datatype_prop_id` int(11) NOT NULL DEFAULT '0',
`value` varchar(256) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `i1_idx` (`field_id`),
KEY `i2_idx` (`datatype_prop_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 |
+---------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
Does anything of the above info look weird?
Thanks again.