RE: Inserting information into multiple tables and problems

2005-09-21 Thread Todd Hewett
todd hewett wrote: >>>mysql> INSERT INTO BOARD_SERIAL_NUMBER (BOARD_SERIAL_NUMBER) >>>mysql> VALUES(36534); >>> >>>ERROR 1216: Cannot add a child row: a foreign key constraint fails > > >>Can you please post the output of: > > >>SHOW CREATE TABLE BOARD_SERIAL_NUMBER; > > > mysql> SHOW CREATE

Re: Inserting information into multiple tables and problems

2005-09-20 Thread Jasper Bryant-Greene
todd hewett wrote: mysql> INSERT INTO BOARD_SERIAL_NUMBER (BOARD_SERIAL_NUMBER) mysql> VALUES(36534); ERROR 1216: Cannot add a child row: a foreign key constraint fails Can you please post the output of: SHOW CREATE TABLE BOARD_SERIAL_NUMBER; mysql> SHOW CREATE TABLE BOARD_SERIAL_NUMB

RE: Inserting information into multiple tables and problems

2005-09-20 Thread todd hewett
>> mysql> INSERT INTO BOARD_SERIAL_NUMBER (BOARD_SERIAL_NUMBER) >> mysql> VALUES(36534); >> >> ERROR 1216: Cannot add a child row: a foreign key constraint fails >Can you please post the output of: >SHOW CREATE TABLE BOARD_SERIAL_NUMBER; >> mysql> INSERT INTO BOARD_TYPE (BOARD_TYPE) VALUES(INPUT

Re: Inserting information into multiple tables and problems

2005-09-20 Thread Jasper Bryant-Greene
Todd Hewett wrote: mysql> INSERT INTO BOARD_SERIAL_NUMBER (BOARD_SERIAL_NUMBER) mysql> VALUES(36534); ERROR 1216: Cannot add a child row: a foreign key constraint fails Can you please post the output of: SHOW CREATE TABLE BOARD_SERIAL_NUMBER; mysql> INSERT INTO BOARD_TYPE (BOARD_TYPE) VALUE

Re: Inserting information into multiple tables and problems

2005-09-20 Thread Todd Hewett
SNIP--- You need to end each INSERT INTO statement with a semicolon (;), not a comma (,). Also pressing after each one will allow you to easier diagnose any problems that might come up. - I have run th

Re: Inserting information into multiple tables and problems

2005-09-20 Thread Jasper Bryant-Greene
Todd Hewett wrote: I currently am failing with the following: mysql> INSERT INTO VCS_PO_NUMBER (VCS_PO_NUMBER) VALUES(899234), -> INSERT INTO BOARD_SERIAL_NUMBER (BOARD_SERIAL_NUMBER) VALUES(36534), -> INSERT INTO BOARD_TYPE (BOARD_TYPE) VALUES(INPUT MODULE N12310), -> INSERT INTO RE

Inserting information into multiple tables and problems

2005-09-20 Thread Todd Hewett
Howdy Folks I hope this is not too much information. I have mysql Ver 11.18 Distrib 3.23.58, for redhat-linux-gnu (i386) I have multiple tables. All are innoD Tables. All AI on a Primary key integer All Columns are varchar 255 that are not keys. Table VCS_PO_NUMBER Has