X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Ffusionax%2FFormations.sql;h=6d02a59edadb2dabc5e76ad1e8ca374a94196c7d;hb=517ecea1229f166ce51fe443f428381ad5912f83;hp=43c89cf8be3de2a74cd788f516a3f88631f05388;hpb=1c4a1d0a32c52851e9ffbbf585bb206c9a472dc9;p=platal.git diff --git a/modules/fusionax/Formations.sql b/modules/fusionax/Formations.sql index 43c89cf..6d02a59 100644 --- a/modules/fusionax/Formations.sql +++ b/modules/fusionax/Formations.sql @@ -3,19 +3,33 @@ DROP TABLE IF EXISTS `fusionax_formations`; CREATE TABLE IF NOT EXISTS `fusionax_formations` ( + Date_maj DATE NOT NULL COMMENT 'Date de mise à jour de ces informations', FO CHAR(2) NOT NULL COMMENT 'Vaut toujours FO pour cette table', ax_id VARCHAR(8) NOT NULL COMMENT 'Id unique de l''ancien', - Intitule_diplome CHAR(60) NOT NULL DEFAULT 0 COMMENT 'Intitulé du diplôme', - Intitule_formation CHAR(60) NOT NULL DEFAULT 0 COMMENT 'Intitulé de la formation', - Descr_formation CHAR(60) NOT NULL COMMENT 'Description de la formation', + Intitule_formation VARCHAR(255) NOT NULL DEFAULT 0 COMMENT 'Intitulé de la formation', + Intitule_diplome VARCHAR(255) NOT NULL DEFAULT 0 COMMENT 'Intitulé du diplôme', + Descr_formation VARCHAR(255) NOT NULL COMMENT 'Description de la formation', + pid INT(11) UNSIGNED DEFAULT NULL, eduid INT(4) DEFAULT NULL, degreeid INT(4) DEFAULT NULL, fieldid INT(2) DEFAULT NULL, PRIMARY KEY (ax_id, Intitule_diplome, Intitule_formation, Descr_formation), - INDEX (Intitule_diplome), - INDEX (Intitule_formation), - INDEX (Descr_formation) + INDEX (Intitule_diplome(60)), + INDEX (Intitule_formation(60)), + INDEX (Descr_formation(60)), + INDEX (pid), + INDEX (eduid), + INDEX (degreeid), + INDEX (fieldid) ) ENGINE=InnoDB, CHARSET=utf8; -LOAD DATA LOCAL INFILE '{?}Formations.txt' INTO TABLE fusionax_formations FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' -(FO, ax_id, Intitule_diplome, Intitule_formation, Descr_formation); +LOAD DATA LOCAL INFILE '{?}Formations.txt' INTO TABLE fusionax_formations CHARACTER SET utf8 FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' +(@StringDate_maj, FO, ax_id, Intitule_formation, Intitule_diplome, Descr_formation) +SET +Date_maj = CONCAT(SUBSTRING(@StringDate_maj,7),'-',SUBSTRING(@StringDate_maj,4,2),'-',SUBSTRING(@StringDate_maj,1,2)); + + + UPDATE fusionax_formations AS f +INNER JOIN profile_education_enum AS e ON (f.Intitule_formation = e.abbreviation) + SET f.Intitule_formation = e.name + WHERE f.Intitule_formation != '';