Changes between Version 22 and Version 23 of DespoinaLog/2010/12/08


Ignore:
Timestamp:
2010-12-08T15:22:28+01:00 (14 years ago)
Author:
antonak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DespoinaLog/2010/12/08

    v22 v23  
    123123
    124124  after import from old table , molgenis forms still not showing data .
     125
     126
     127mysql> select * from biobank where id=1;
     128+---------+----------+------+------+------------+-------------------------------------------------------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     129| Acronym | Category | Type | Size | LastUpdate | Description                                                 | id | name | Investigation | ontologyReference | Individuals | Species | PanelType | FounderPanels | Institutes | Publications | Contacts | Topics | Materials |
     130+---------+----------+------+------+------------+-------------------------------------------------------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     131| Agnes   |       34 | core | 800  | 2010-11-25 | see PLoS ONE 3(10): e3583. doi:10.1371/journal.pone.0003583 |  1 | NULL | NULL          | NULL              | NULL        | NULL    | NULL      | NULL          | NULL       | NULL         | NULL     | NULL   | NULL      |
     132+---------+----------+------+------+------------+-------------------------------------------------------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     1331 row in set (0.00 sec)
     134
     135mysql> select * from biobank where id=2;
     136+---------+----------+------+-------+------------+-------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     137| Acronym | Category | Type | Size  | LastUpdate | Description | id | name | Investigation | ontologyReference | Individuals | Species | PanelType | FounderPanels | Institutes | Publications | Contacts | Topics | Materials |
     138+---------+----------+------+-------+------------+-------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     139| AGORA   |      126 | core | 5,000 | 2010-11-25 | 1600 trio's |  2 | NULL | NULL          | NULL              | NULL        | NULL    | NULL      | NULL          | NULL       | NULL         | NULL     | NULL   | NULL      |
     140+---------+----------+------+-------+------------+-------------+----+------+---------------+-------------------+-------------+---------+-----------+---------------+------------+--------------+----------+--------+-----------+
     1411 row in set (0.00 sec)
     142
     143mysql> update  biobank  set ="OntologyTerm";
     144ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '="OntologyTerm"' at line 1
     145mysql> describe biobank;
     146+-------------------+--------------------------------+------+-----+---------+-------+
     147| Field             | Type                           | Null | Key | Default | Extra |
     148+-------------------+--------------------------------+------+-----+---------+-------+
     149| Acronym           | varchar(255)                   | YES  |     | NULL    |       |
     150| Category          | int(11)                        | NO   | MUL | NULL    |       |
     151| Type              | enum('core','support','other') | NO   |     | NULL    |       |
     152| Size              | varchar(255)                   | YES  |     | NULL    |       |
     153| LastUpdate        | date                           | NO   |     | NULL    |       |
     154| Description       | text                           | YES  |     | NULL    |       |
     155| id                | int(11)                        | NO   | PRI | NULL    |       |
     156| name              | varchar(255)                   | YES  |     | NULL    |       |
     157| Investigation     | varchar(255)                   | YES  |     | NULL    |       |
     158| ontologyReference | varchar(255)                   | YES  |     | NULL    |       |
     159| Individuals       | varchar(255)                   | YES  |     | NULL    |       |
     160| Species           | varchar(255)                   | YES  |     | NULL    |       |
     161| PanelType         | varchar(255)                   | YES  |     | NULL    |       |
     162| FounderPanels     | varchar(255)                   | YES  |     | NULL    |       |
     163| Institutes        | varchar(255)                   | YES  |     | NULL    |       |
     164| Publications      | varchar(255)                   | YES  |     | NULL    |       |
     165| Contacts          | varchar(255)                   | YES  |     | NULL    |       |
     166| Topics            | varchar(255)                   | YES  |     | NULL    |       |
     167| Materials         | varchar(255)                   | YES  |     | NULL    |       |
     168+-------------------+--------------------------------+------+-----+---------+-------+
     16919 rows in set (0.00 sec)