Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 769 | Rev 780 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
754 raphael 1
-- date d'observation dans le futur
2
UPDATE cel_obs SET date_observation = NULL WHERE date_observation > now();
3
-- cleanup
4
UPDATE cel_obs SET date_observation = NULL WHERE date_observation = '0000-00-00 00:00:00';
5
-- cleanup
6
UPDATE cel_obs SET latitude = NULL, longitude = NULL WHERE longitude = 0 and latitude = 0;
7
 
8
-- referentiels: 65800 NULL, 13000 ''
9
UPDATE cel_obs SET nom_referentiel = SUBSTRING_INDEX(nom_referentiel, ':', 1);
10
UPDATE cel_obs SET nom_referentiel = 'bdtfx' WHERE nom_referentiel IN ('bdtfx_v1','bdnff');
755 raphael 11
-- TODO: UPDATE cel_obs SET nom_referentiel = NULL where nom_referentiel = '';
756 raphael 12
 
13
-- suppression des infos générées pour les observations dont le nom_sel à été supprimé par l'utilisateur
14
-- 3172
15
UPDATE tb_cel.cel_obs c SET
16
       c.nom_ret = '',
17
       c.nom_sel_nn = NULL,
18
       c.nom_ret = NULL,
19
       c.nom_ret_nn = NULL,
20
       c.nt = NULL,
21
       c.famille = NULL;
22
       WHERE nom_sel = '' OR nom_sel IS NULL;
760 raphael 23
 
769 raphael 24
-- problème n°1: mauvais référentiel (bdtfx)
760 raphael 25
UPDATE tb_cel.cel_obs SET nom_referentiel = 'bdtxa' WHERE lieudit = 'Grenade';
769 raphael 26
 
27
-- problème n°2: nom_sel NULL, nom_ret NOT NULL: 26 obs
28
UPDATE cel_obs SET nom_sel = nom_ret, nom_sel_nn = nom_ret_nn WHERE nom_sel IS NULL AND nom_ret IS NOT NULL;
29
 
30
-- problème n°3: backslashes + newline: 90 + 217 obs
31
UPDATE cel_obs SET commentaire = REPLACE(commentaire, "\n\\\'", "'");
32
UPDATE cel_obs SET commentaire = REPLACE(commentaire, "\\\'", "'");
777 raphael 33
 
34
-- problème n°4: ce_zone_geo inutile: 57802 obs
35
UPDATE cel_obs SET ce_zone_geo = NULL WHERE ce_zone_geo = 'INSEE-C:';