CREATE FUNCTION cen_insertion_point_habitat() RETURNS integer AS $_$ DECLARE myrec RECORD; var_gid bigint; var_protocole bigint; var_id_lot_donnee character varying(50); BEGIN FOR myrec IN SELECT gid, protocole, id_lot_donnee FROM point_habitat_a_importer WHERE id_entite IS NULL LOOP var_gid:=myrec.gid; var_protocole:=myrec.protocole; -- ese var_id_lot_donnee:=myrec.id_lot_donnee; -- a ventiler dans les métadonnées EXECUTE $req$ INSERT INTO entite_spatiale_ecologique (id_entite, id_protocole, validateur_code_personne, validateur_id_structure, id_lot, type_entite) VALUES(nextval('entite_spatiale_ecologique_id_entite_seq'),$req$||quote_literal(var_protocole)||$req$, null, null, $req$||quote_literal(var_id_lot_donnee)||$req$, 'point_habitat') $req$; RAISE INFO 'nouvelle ESE de type point_habitat ajoutée'; EXECUTE $req$ UPDATE point_habitat_a_importer SET id_entite=currval('entite_spatiale_ecologique_id_entite_seq'), date_ventilation=current_date WHERE gid=$req$||quote_literal(var_gid)||$req$ $req$; RAISE INFO 'ligne courante de la table point_habitat_a_importer mise à jour'; EXECUTE $req$ INSERT INTO point_habitat (id_entite, date_obs, coord_x, coord_y, coord_z, systeme_coordonnees, "precision", remarque, complexe_habitat, complexe_recouvrement, geometrie) SELECT id_entite, date_obs, coord_x, coord_y, coord_z, systeme_coordonnees, "precision", remarque, complexe_habitat, complexe_recouvrement, geometrie FROM point_habitat_a_importer WHERE gid=$req$||var_gid||$req$; $req$; RAISE INFO 'nouveau point_habitat ajouté'; END LOOP; RETURN 1; END; $_$ LANGUAGE plpgsql;