== Inconsistency with biobank table (pheno & gcc project) == == problem: == The bbmri.xml describes the table as follows :[[BR]][[BR]] Describes one biobank cohort[[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]] [[BR]][[BR]]Similarly the BBMRIupdateDatabase tries to create these fields. But[[BR]]the created table in DB is missing the fields:[[BR]][[BR]]Institutes (mref), Publications(mref), Contacts (mref), Topics[[BR]](mref), Materials (mref).[[BR]][[BR]]Is this how was supposed to work? Because it causes a problem in mysql[[BR]]input from the previous scheme (in pheno). == Solution == * create new table biobank from pheno project as follows: mysql> create table biobank_new select Acronym, Category, Type, Size, !LastUpdate, Description, id from biobank ; (only fields that exist in biobank in gcc project) * Dump and insert new table in gcc project. * $ mysqldump5 -u root -p bbmri_old biobank_new > biobank_new.mysql  * mysql5 -u root -p bbmri < biobank_new.mysql * Edit