Stuart McLachlan
stuart at lexacorp.com.pg
Wed Dec 21 23:14:23 CST 2005
On 22 Dec 2005 at 0:09, John Colby wrote: > The weird part is that when I did this on the BACK END directly I didn't get > these, but when I do it through the FE there are just tons of them. > > Server Error 547: ALTER TABLE statement conflicted with COLUMN FOREIGN KEY > constraint 'tblClaim_FK00'. The conflict occurred in database 'DISCO_SQL', > table 'tblClaimant', column 'CLMT_ID'. > That one usually means that you are building a constraint before you have poulated the parent table. In this case, it looks as though you do not have all the data in tblClaimant before building tblClaim. -- Stuart