Some more info;
Using a small table with no indexes or foreign keys.
When i insert a row using the latest backup of our Database
(i extract 1 row from this small table and change the primaryKEY, it adds the row and I can select it with a query in MYSQL, but it does not show up in report.
INSERT INTO WO_REQUESTS VALUES (275,1,'2007-06-29','Medium',
'This is a test for insert into wo orders thru backdoor.','In progress',
'medium',2,
'Cindy Richter','Not started - 07/13/2004','2007-08-15','2007-08-22','Criss II','666','John MacLennan');
mysql> SELECT STATUS, REQUEST_ID, REQUEST_DATE, PERSON, REQUEST FROM WO_REQUESTS WHERE REQUEST_ID = 275 ORDER BY REQUEST_ID;
+-------------+------------+--------------+----------------+---------------------------------------------------------+
| STATUS | REQUEST_ID | REQUEST_DATE | PERSON | REQUEST |
+-------------+------------+--------------+----------------+---------------------------------------------------------+
| In progress | 275 | 2007-06-29 | John MacLennan | This is a test for insert into wo orders thru backdoor. |
+-------------+------------+--------------+----------------+---------------------------------------------------------+
1 row in set (0.00 sec)
However when I insert from a backup PRIOR to the upgrade it
will appear on the application report, this backup has a
different format (1 insert statement for every row).
INSERT INTO WO_REQUESTS VALUES (273,6,'2007-08-01',
'Medium','Investigate methods for E-mail notification when spreadsheet updated',
'In progress',
'medium',2,'Jim Byars','','2007-08-01','0000-00-00',
'Criss II','121','Susan Zuger');
mysql> SELECT STATUS, REQUEST_ID, REQUEST_DATE, PERSON, REQUEST FROM WO_REQUESTS WHERE REQUEST_ID = 273 ORDER BY REQUEST_ID;
+-------------+------------+--------------+-------------+----------------------------------------------------------------------+
| STATUS | REQUEST_ID | REQUEST_DATE | PERSON | REQUEST |
+-------------+------------+--------------+-------------+----------------------------------------------------------------------+
| In progress | 273 | 2007-08-01 | Susan Zuger | Investigate methods for E-mail notification when spreadsheet updated |
+-------------+------------+--------------+-------------+----------------------------------------------------------------------+
1 row in set (0.01 sec)
How can I revert back to the older format (or can I), have tried using different parameters with no success with mysqldump.