5 Replies Latest reply on Feb 25, 2007 4:29 PM by gavin.king

    seam-gen stack overflow

    pista666

      occurs when you have 2 tables referencing each other

      like this:
      alter table core.ORG_PARTNER
      add constraint FK1 foreign key (PRIMARY_CONTACT_ID)
      references core.ORG_PARTNER_CONTACT(CONTACT_ID)
      ;

      alter table core.ORG_PARTNER_CONTACT
      add constraint FK2 foreign key (PARTNER_ID)
      references core.ORG_PARTNER (PARTNER_ID)
      ;