Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 777 | Rev 816 | 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');
756 raphael 11
 
780 raphael 12
-- pas de raison historique mémorisée à une différence '' vs NULL
13
UPDATE cel_obs SET nom_referentiel = NULL where nom_referentiel = '';
14
 
756 raphael 15
-- suppression des infos générées pour les observations dont le nom_sel à été supprimé par l'utilisateur
16
-- 3172
17
UPDATE tb_cel.cel_obs c SET
18
       c.nom_ret = '',
19
       c.nom_sel_nn = NULL,
20
       c.nom_ret = NULL,
21
       c.nom_ret_nn = NULL,
22
       c.nt = NULL,
780 raphael 23
       c.famille = NULL
756 raphael 24
       WHERE nom_sel = '' OR nom_sel IS NULL;
760 raphael 25
 
769 raphael 26
-- problème n°1: mauvais référentiel (bdtfx)
760 raphael 27
UPDATE tb_cel.cel_obs SET nom_referentiel = 'bdtxa' WHERE lieudit = 'Grenade';
769 raphael 28
 
29
-- problème n°2: nom_sel NULL, nom_ret NOT NULL: 26 obs
30
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;
31
 
32
-- problème n°3: backslashes + newline: 90 + 217 obs
33
UPDATE cel_obs SET commentaire = REPLACE(commentaire, "\n\\\'", "'");
34
UPDATE cel_obs SET commentaire = REPLACE(commentaire, "\\\'", "'");
777 raphael 35
 
36
-- problème n°4: ce_zone_geo inutile: 57802 obs
37
UPDATE cel_obs SET ce_zone_geo = NULL WHERE ce_zone_geo = 'INSEE-C:';