diff --git a/bin/ose-deploy b/bin/ose-deploy
deleted file mode 100644
index 00113fa23903c3b411c397b2950c7b04ff34942b..0000000000000000000000000000000000000000
--- a/bin/ose-deploy
+++ /dev/null
@@ -1,537 +0,0 @@
-#!/usr/bin/env php
-<?php
-
-$c  = new Console();
-$od = new OseDeploy($c);
-
-$c->printMainTitle("Déploiement de OSE", 13);
-
-$c->check([
-    'git'        => 'Gestionnaire de versions',
-    'php'        => 'Langage PHP',
-    'wget'       => 'Téléchargement en ligne de commande',
-    'ssh-keygen' => 'Générateur de clé SSH',
-    'unoconv'    => ['description' =>'Convertisseur OpenDocument vers PDF', 'facultatif' => true],
-]);
-
-if (!$od->checkPhpModules([
-    'curl'         => 'Curl',
-    'intl'         => 'Intl',
-    'json'         => 'Json',
-    'ldap'         => 'Ldap',
-    'mbstring'     => 'MbString',
-    'mcrypt'       => 'MCrypt',
-    'Zend OPcache' => 'Zend OPcache',
-    'xml'          => 'XML',
-    'zip'          => 'ZIP',
-    'bcmath'       => 'BCMath',
-    'gd'           => 'GD',
-    'oci8'         => 'OCI8 (Pilote Oracle)',
-])){
-    $c->printDie('Un ou plusieurs modules PHP sont manquants. Merci de les installer pour poursuivre l\'installation de OSE');
-};
-
-// Mise en place de la clé SSH
-if (!$od->gitlabIsReachable()) {
-    $c->println("\nMise en place de la clé SSH vers le GitLab hébergeant OSE", $c::COLOR_LIGHT_CYAN);
-    $c->println("L'accès au serveur Gitlab doit se faire par SSH.");
-    $c->print("Voulez-vous créer une clé SSH pour accéder au serveur Gitlab hébergeant OSE ? (o/n, n par défaut) ");
-    $needKey = $c->getInput();
-    if (in_array($needKey, ["o", "O"])) {
-        $c->println("Génération de la clé SSH...");
-        $c->print("Veuillez préciser l'adresse mail du compte utilisé pour accéder au Gitlab de OSE: ");
-        $gitlabMail = $c->getInput();
-        $c->passthru("ssh-keygen -t rsa -C $gitlabMail -b 4096");
-        $c->println("Intégrez ensuite votre clé SSH dans Gitlab.");
-        $c->println("Le serveur GitLab est accessible à l'adresse suivante : https://git.unicaen.fr/dsi/OSE");
-        $c->println("Ensuite, appuyez sur \"Entrée\" pour continuer...");
-        $c->getInput();
-        if ($od->gitlabIsReachable()) {
-            $c->println("Votre clé SSH a bien été déployée et est fonctionnelle.", $c::COLOR_LIGHT_GREEN);
-        } else {
-            $c->printDie("L'accès par SSH au serveur GitLab de OSE ne fonctionne pas. Merci de déployer par vous-même une clé, car vous en aurez besoin pour la suite de la procédure.");
-        }
-    } else {
-        if (!$od->gitlabIsReachable()) {
-            $c->printDie("L'accès par SSH au serveur GitLab de OSE ne fonctionne pas. Merci de déployer par vous-même une clé, car vous en aurez besoin pour la suite de la procédure.");
-        }
-    }
-}
-
-
-// Création du dossier
-$c->println("\nCréation du dossier et initialisation de GIT", $c::COLOR_LIGHT_CYAN);
-$c->print("Veuillez indiquer un nouveau répertoire où implanter OSE: ");
-$osedir = $c->getInput();
-
-if (file_exists($osedir)) {
-    $c->printDie("Le répertoire $osedir existe déjà. Merci d'en spécifier un nouveau.");
-}
-
-$c->exec([
-    "mkdir $osedir",
-    "cd $osedir",
-    "git init",
-    "git remote add origin " . $od::OSE_ORIGIN,
-    "git fetch --all --tags --prune",
-]);
-
-
-// Choix de la version
-$c->println("\nSélection de la version à déployer", $c::COLOR_LIGHT_CYAN);
-$c->println("Voici la liste des versions de OSE disponibles:");
-$tags = $od->getTags();
-foreach ($tags as $tag) {
-    $c->println($tag);
-}
-$ok = false;
-while (!$ok) {
-    $c->print("Veuillez choisir une version à déployer: ");
-    $version = $c->getInput();
-    if ($od->tagIsValid($version)) {
-        $ok = true;
-    } else {
-        $c->println("$version n'est pas dans la liste des versions disponibles.");
-    }
-}
-
-
-// Récupération des sources
-$c->println("\nDéploiement à partir des sources GIT", $c::COLOR_LIGHT_CYAN);
-$c->exec([
-    "cd $osedir",
-    "git checkout tags/$version",
-    "mkdir data/cache",
-    "chmod 777 data/cache",
-    "chmod +7 bin/ose",
-]);
-$od->writeVersion($osedir, $version);
-
-
-// Récupération de Composer
-$c->println("\nRécupération de l'outil de gestion des dépendances Composer", $c::COLOR_LIGHT_CYAN);
-$c->passthru("cd $osedir;wget https://getcomposer.org/composer.phar");
-
-// Récupération des dépendances
-$c->println("\nChargement des dépendances à l'aide de Composer", $c::COLOR_LIGHT_CYAN);
-$c->passthru("cd $osedir;php composer.phar install");
-
-// Génération des proxies pour l'ORM Doctrine
-$c->println("\nGénération des proxies pour l'ORM Doctrine", $c::COLOR_LIGHT_CYAN);
-$c->exec([
-    "cd $osedir",
-    "php vendor/bin/doctrine-module orm:generate-proxies",
-    "chmod -R 777 data/cache/DoctrineProxy",
-    "cp config/application.local.php.dist config.local.php",
-]);
-
-// Mise à jour des liens vers les répertoires publics des dépendances
-$c->println("\nMise à jour des liens vers les répertoires publics des dépendances", $c::COLOR_LIGHT_CYAN);
-$od->majUnicaenSymLinks($osedir);
-$c->println('Liens mis en place', $c::COLOR_LIGHT_GREEN);
-
-// Mise en place des tâches CRON ??
-
-
-// Conclusion
-$c->println("\nFin du script d'installation des fichiers", $c::COLOR_LIGHT_GREEN);
-$c->println("Il reste encore six étapes à réaliser pour que OSE soit pleinement fonctionnel :");
-$c->println(" 1 - Configurez votre serveur Apache");
-$c->println(" 2 - Initialisez la base de données de OSE avec le script prévu à cet effet");
-$c->println(" 3 - Mettez en place la configuration locale de l'application");
-$c->println(" 4 - Une fois bien connecté, configurez vos connecteurs en vous appuyant\n     le cas échéant sur ceux qui vous sont fournis");
-$c->println(" 5 - Mettez en place les tâches CRON nécessaires (envoi de mails pour les indicateurs, Synchronisation automatique, etc.");
-$c->println(" 6 - Paramétrez l'application pour l'adapter à vos besoins");
-$c->println('');
-$c->println("Pour la suite, merci de vous reporter au guide de l'administrateur pour vous aider à configurer l'application");
-$c->println('');
-
-
-
-
-
-/************************************************************
- *                      Classes utiles                      *
- ************************************************************/
-class OseDeploy
-{
-    const OSE_ORIGIN = 'git@git.unicaen.fr:dsi/OSE.git';
-
-    /**
-     * @var Console
-     */
-    protected $console;
-
-    /**
-     * @var array
-     */
-    private $tags = false;
-
-
-
-    /**
-     * OseDeploy constructor.
-     *
-     * @param Console $console
-     */
-    public function __construct(Console $console)
-    {
-        $this->console = $console;
-    }
-
-
-
-    public function majUnicaenSymLinks($oseDir): bool
-    {
-        if (substr($oseDir, -1) !== '/') {
-            $oseDir .= '/';
-        }
-
-        $oldLibs = [];
-        $od      = array_filter(glob($oseDir . 'public/vendor/unicaen/*'), 'is_dir');
-        foreach ($od as $dir) {
-            $oldLibs[] = basename($dir);
-        }
-
-        $newLibs = [];
-        $nd      = array_filter(glob($oseDir . 'vendor/unicaen/*'), 'is_dir');
-        foreach ($nd as $dir) {
-            if (is_dir($dir . '/public')) {
-                $newLibs[] = basename($dir);
-            }
-        }
-
-        $deleteLibs = array_diff($oldLibs, $newLibs);
-        $createLibs = array_diff($newLibs, $oldLibs);
-
-        foreach ($deleteLibs as $lib) {
-            $command = "rm $oseDir"."public/vendor/unicaen/$lib";
-            $this->console->print($command);
-            $this->console->exec($command);
-        }
-
-        foreach ($createLibs as $lib) {
-            $command = "cd $oseDir"."public/vendor/unicaen;ln -sf ../../../vendor/unicaen/$lib/public $lib";
-            $this->console->print($command);
-            $this->console->exec($command);
-        }
-
-        return !(empty($deleteLibs) && empty($createLibs));
-    }
-
-
-
-
-    public function checkPhpModules(array $modules)
-    {
-        $len = 60;
-        $result = true;
-
-        $this->console->println("Contrôle d'existance des modules PHP nécessaires", $this->console::COLOR_LIGHT_CYAN);
-        $this->console->println($this->console->strPad('Module PHP', $len) . "Résultat");
-        $this->console->println($this->console->strPad('----------', $len) . "--------");
-        foreach ($modules as $module => $description) {
-            $return = null;
-            $passed = in_array($module, get_loaded_extensions());
-
-            $this->console->print($this->console->strPad($description, $len));
-            if ($passed) {
-                $this->console->println('Module trouvé', $this->console::COLOR_LIGHT_GREEN);
-            } else {
-                $this->console->println('Module manquant', $this->console::COLOR_LIGHT_RED);
-            }
-
-            if (!$passed) $result = false;
-        }
-
-        return $result;
-    }
-
-
-
-    public function gitlabIsReachable(): bool
-    {
-        $gitCheck = $this->console->exec("git ls-remote --heads " . self::OSE_ORIGIN, false);
-
-        return (false !== strpos(implode(' ', $gitCheck), 'heads/master'));
-    }
-
-
-
-    public function getTags(): array
-    {
-        if (false === $this->tags) {
-            $this->tags = [];
-
-            $ts = $this->console->exec("git ls-remote --tags --refs " . self::OSE_ORIGIN, false);
-            foreach ($ts as $tag) {
-                $this->tags[] = substr($tag, strpos($tag, 'refs/tags/') + 10);
-            }
-        }
-
-        return $this->tags;
-    }
-
-
-
-    /**
-     * @param string $tag
-     *
-     * @return bool
-     */
-    public function tagIsValid(string $tag): bool
-    {
-        return in_array($tag, $this->getTags());
-    }
-
-
-
-    public function currentVersion(string $osedir): string
-    {
-        $vf = $this->getVersionFile($osedir);
-        if (!file_exists($vf)) {
-            return 'inconnue';
-        }
-
-        return file_get_contents($vf);
-    }
-
-
-
-    public function writeVersion(string $osedir, string $version)
-    {
-        $vf = $this->getVersionFile($osedir);
-        file_put_contents($vf, $version);
-    }
-
-
-
-    private function getVersionFile(string $osedir): string
-    {
-        if ('/' == substr($osedir, -1)) {
-            return $osedir . 'VERSION';
-        } else {
-            return $osedir . '/VERSION';
-        }
-    }
-}
-
-
-
-
-
-class Console
-{
-    const COLOR_BLACK        = '0;30';
-    const COLOR_DARK_GRAY    = '1;30';
-    const COLOR_BLUE         = '0;34';
-    const COLOR_LIGHT_BLUE   = '1;34';
-    const COLOR_GREEN        = '0;32';
-    const COLOR_LIGHT_GREEN  = '1;32';
-    const COLOR_CYAN         = '0;36';
-    const COLOR_LIGHT_CYAN   = '1;36';
-    const COLOR_RED          = '0;31';
-    const COLOR_LIGHT_RED    = '1;31';
-    const COLOR_PURPLE       = '0;35';
-    const COLOR_LIGHT_PURPLE = '1;35';
-    const COLOR_BROWN        = '0;33';
-    const COLOR_YELLOW       = '1;33';
-    const COLOR_LIGHT_GRAY   = '0;37';
-    const COLOR_WHITE        = '1;37';
-
-    const BG_BLACK      = '40';
-    const BG_RED        = '41';
-    const BG_GREEN      = '42';
-    const BG_YELLOW     = '43';
-    const BG_BLUE       = '44';
-    const BG_MAGENTA    = '45';
-    const BG_CYAN       = '46';
-    const BG_LIGHT_GRAY = '47';
-
-
-
-    public function check(array $prerequis)
-    {
-        $len = 60;
-        $res = true;
-
-        $this->println("Contrôle des prérequis à l'exécution du script", self::COLOR_LIGHT_CYAN);
-        $this->println($this->strPad('Commande (description éventuelle)', $len) . "Résultat");
-        $this->println($this->strPad('----------------------', $len) . "--------");
-        foreach ($prerequis as $command => $desc) {
-            if (is_array($desc)) {
-                extract($desc);
-            } else {
-                $description = $desc;
-                $facultatif  = false;
-            }
-
-            $return = null;
-            exec('command -v ' . $command, $null, $result);
-            $passed = ($result == 0);
-
-            $this->print($this->strPad($command . ($description ? " ($description)" : ''), $len));
-            if ($passed) {
-                $this->println('Commande trouvée', self::COLOR_LIGHT_GREEN);
-            } elseif ($facultatif) {
-                $this->println('Manquante, facultative', self::COLOR_LIGHT_PURPLE);
-            } else {
-                $this->println('Commande manquante', self::COLOR_LIGHT_RED);
-                $res = false;
-            }
-        }
-
-        if (!$res) {
-            $this->printDie('Un ou plusieurs prérequis nécessaires ne sont pas présents sur cette machine. Merci de les installer avant de poursuivre l\'installation.');
-        }
-
-        return $res;
-    }
-
-
-
-    public function printMainTitle($title, $spaces = 1)
-    {
-        $pstr = str_repeat(' ', $spaces);
-        $t    = $pstr . $title . $pstr;
-
-        $len = mb_strlen($t);
-
-        echo '╔' . str_repeat('═', $len) . "╗\n";
-        echo '║' . str_repeat(' ', $len) . "║\n";
-        echo "║" . $t . "║\n";
-        echo '║' . str_repeat(' ', $len) . "║\n";
-        echo '╚' . str_repeat('═', $len) . "╝\n\n";
-    }
-
-
-
-    public function print($text, $color = null, $bgColor = null)
-    {
-        if ($bgColor) $bgColor = ';' . $bgColor;
-
-        if (!$color && !$bgColor) {
-            echo $text;
-        } else {
-            echo "\e[$color$bgColor" . "m$text\e[0m";
-        }
-    }
-
-
-
-    public function println($text, $color = null, $bgColor = null)
-    {
-        $this->print($text, $color, $bgColor);
-        echo "\n";
-    }
-
-
-
-    public function gestExitCode($code)
-    {
-        if (0 == $code) return;
-
-        $this->printDie("Une erreur ($code) est survenue. Le script est stoppé");
-    }
-
-
-
-    public function printDie($text)
-    {
-        $this->println($text, self::COLOR_LIGHT_RED);
-        $this->println(' -- FIN Prématurée de l\'exécution du script -- ', null, self::BG_RED);
-        die("\n");
-    }
-
-
-
-    public function getArg($index = null)
-    {
-        $args = isset($_SERVER['argv']) ? $_SERVER['argv'] : [];
-
-        if (null === $index) return $args;
-
-        if (isset($args[$index])) {
-            return $args[$index];
-        } else {
-            return null;
-        }
-    }
-
-
-
-    public function getInput()
-    {
-        return trim(fgets(STDIN));
-    }
-
-
-
-    public function getSilentInput()
-    {
-        if (preg_match('/^win/i', PHP_OS)) {
-            $vbscript = sys_get_temp_dir() . 'prompt_password.vbs';
-            file_put_contents(
-                $vbscript, 'wscript.echo(InputBox("'
-                . addslashes('')
-                . '", "", "password here"))');
-            $command  = "cscript //nologo " . escapeshellarg($vbscript);
-            $password = rtrim(shell_exec($command));
-            unlink($vbscript);
-
-            return $password;
-        } else {
-            $command = "/usr/bin/env bash -c 'echo OK'";
-            if (rtrim(shell_exec($command)) !== 'OK') {
-                trigger_error("Can't invoke bash");
-
-                return;
-            }
-            $command  = "/usr/bin/env bash -c 'read -s -p \""
-                . addslashes('')
-                . "\" mypassword && echo \$mypassword'";
-            $password = rtrim(shell_exec($command));
-            echo "\n";
-
-            return $password;
-        }
-    }
-
-
-
-    public function exec($command, $autoDisplay = true)
-    {
-        if (is_array($command)) {
-            $command = implode(';', $command);
-        }
-
-        exec($command, $output, $return);
-        if ($autoDisplay) {
-            echo implode("\n", $output) . "\n";
-        }
-        $this->gestExitCode($return);
-
-        return $output;
-    }
-
-
-
-    public function passthru($command)
-    {
-        if (is_array($command)) {
-            $command = implode(';', $command);
-        }
-
-        passthru($command, $returnVar);
-        $this->gestExitCode($returnVar);
-
-        return $returnVar;
-    }
-
-
-
-    public function strPad($input, $padLength = null, $padString = ' ')
-    {
-        return utf8_encode(str_pad(utf8_decode($input), $padLength, $padString));
-    }
-}
\ No newline at end of file
diff --git a/code/test6.php b/code/test6.php
index 9db28f97aa7526d7555e5523f5611387bf7c0955..ba52f242125adeec27c680075cb92392bc3a7ada 100644
--- a/code/test6.php
+++ b/code/test6.php
@@ -7,12 +7,15 @@
  * @var $sl         \Zend\ServiceManager\ServiceLocatorInterface
  */
 
-use UnicaenImport\Processus\ImportProcessus;
+use UnicaenImport\Service\QueryGeneratorService;
 
 
-/** @var ImportProcessus $ip */
-$ip = $sl->get(ImportProcessus::class);
+/** @var QueryGeneratorService $qg */
+$qg = $sl->get(QueryGeneratorService::class);
 
+$sm = $qg->getEntityManager()->getConnection()->getSchemaManager();
 
 
-$ip->syncJob('test1');
\ No newline at end of file
+//$r = $qg->makeDiffView('VOLUME_HORAIRE_ENS');
+
+var_dump($sm->listViews());
\ No newline at end of file
diff --git "a/data/D\303\251ploiement/Changements.pdf" "b/data/D\303\251ploiement/Changements.pdf"
index e3466213b24b62acf100cb31942138b52d75fa01..dc6c4f77403fdb99a69c2ba862d4a11ff1317165 100644
Binary files "a/data/D\303\251ploiement/Changements.pdf" and "b/data/D\303\251ploiement/Changements.pdf" differ
diff --git "a/data/D\303\251ploiement/Proc\303\251dure d'installation.pdf" "b/data/D\303\251ploiement/Proc\303\251dure d'installation.pdf"
index 0122c5403ad4e54dd0e2758f466add74e634d912..0c1c2648faf5278966096c95f6a0f4f7e0086486 100644
Binary files "a/data/D\303\251ploiement/Proc\303\251dure d'installation.pdf" and "b/data/D\303\251ploiement/Proc\303\251dure d'installation.pdf" differ
diff --git "a/data/D\303\251ploiement/Proc\303\251dure de mise \303\240 jour.pdf" "b/data/D\303\251ploiement/Proc\303\251dure de mise \303\240 jour.pdf"
index d09f892939a819f071a714420faa4dc0ac8fc8f1..b262c2d292594cf4f95608c7ad0c73cd5ff9dc1a 100644
Binary files "a/data/D\303\251ploiement/Proc\303\251dure de mise \303\240 jour.pdf" and "b/data/D\303\251ploiement/Proc\303\251dure de mise \303\240 jour.pdf" differ
diff --git "a/data/D\303\251ploiement/ose-ddl.sql" "b/data/D\303\251ploiement/ose-ddl.sql"
index fa9147bed7f62c4a0f0f00f54f56e5f6c6fa6674..96a8c501f70f5b198bdcd336159c93ea2f5e92fc 100755
--- "a/data/D\303\251ploiement/ose-ddl.sql"
+++ "b/data/D\303\251ploiement/ose-ddl.sql"
@@ -2951,7 +2951,7 @@ END ucbn_ldap;
 /
 
 -- UNICAEN_IMPORT
-CREATE OR REPLACE PACKAGE "UNICAEN_IMPORT" AS 
+CREATE OR REPLACE PACKAGE "UNICAEN_IMPORT" AS
 
   z__SYNC_FILRE__z CLOB DEFAULT '';
   z__IGNORE_UPD_COLS__z CLOB DEFAULT '';
@@ -2963,6 +2963,7 @@ CREATE OR REPLACE PACKAGE "UNICAEN_IMPORT" AS
   PROCEDURE set_current_annee (p_current_annee INTEGER);
 
   FUNCTION IN_COLUMN_LIST( VALEUR VARCHAR2, CHAMPS CLOB ) RETURN NUMERIC;
+  PROCEDURE REFRESH_MV( mview_name varchar2 );
   PROCEDURE SYNC_LOG( message CLOB, table_name VARCHAR2 DEFAULT NULL, source_code VARCHAR2 DEFAULT NULL );
 
   PROCEDURE SYNCHRONISATION( table_name VARCHAR2, SYNC_FILRE CLOB DEFAULT '', IGNORE_UPD_COLS CLOB DEFAULT '' );
@@ -2970,6 +2971,7 @@ CREATE OR REPLACE PACKAGE "UNICAEN_IMPORT" AS
 
 
 END UNICAEN_IMPORT;
+
 /
 
 -- UNICAEN_OSE_FORMULE
@@ -11580,6 +11582,15 @@ CREATE OR REPLACE PACKAGE BODY "UNICAEN_IMPORT" AS
 
 
 
+  PROCEDURE REFRESH_MV( mview_name varchar2 ) IS
+  BEGIN
+    DBMS_MVIEW.REFRESH(mview_name, 'C');
+  EXCEPTION WHEN OTHERS THEN
+    SYNC_LOG( SQLERRM, mview_name );
+  END;
+
+
+
   PROCEDURE SYNC_LOG( message CLOB, table_name VARCHAR2 DEFAULT NULL, source_code VARCHAR2 DEFAULT NULL ) IS
   BEGIN
     INSERT INTO SYNC_LOG("ID","DATE_SYNC","MESSAGE","TABLE_NAME","SOURCE_CODE") VALUES (SYNC_LOG_ID_SEQ.NEXTVAL, SYSDATE, message,table_name,source_code);
@@ -18280,25 +18291,6 @@ END;
 /
 ALTER TRIGGER "SERVICE_REFERENTIEL_HISTO_CK" ENABLE;
 
--- TYPE_INTERVENTION_STRUCTURE_CK
-CREATE OR REPLACE TRIGGER "TYPE_INTERVENTION_STRUCTURE_CK" 
-  BEFORE INSERT OR UPDATE ON "TYPE_INTERVENTION_STRUCTURE"
-  REFERENCING FOR EACH ROW
-  DECLARE 
-  structure_niveau NUMERIC;
-BEGIN
-  
-  SELECT structure.niveau INTO structure_niveau FROM structure WHERE structure.id = :NEW.structure_id;
-  
-  IF structure_niveau <> 2 THEN
-    raise_application_error(-20101, 'Les types d''intervention ne peuvent être associés qu''à des structures de niveau 2.');
-  END IF;
-
-END;
-
-/
-ALTER TRIGGER "TYPE_INTERVENTION_STRUCTURE_CK" ENABLE;
-
 -- T_CRG_ETAPE
 CREATE OR REPLACE TRIGGER "T_CRG_ETAPE" 
   AFTER INSERT OR DELETE OR UPDATE OF HISTO_DESTRUCTION ON "ETAPE"
diff --git a/data/Sql/statuts et sections cnu.sql b/data/Sql/statuts et sections cnu.sql
index 0ae34b1ee0e16bfa33654dd425e08459b351387b..2c4070259d12bfd3e8a6c120b9ef538d1e7d7785 100755
--- a/data/Sql/statuts et sections cnu.sql	
+++ b/data/Sql/statuts et sections cnu.sql	
@@ -1,35 +1,31 @@
+-- recherche d'intervenants
+SELECT
+  id,
+  nom_patronymique, nom_usuel, prenom, code code_harpege
+FROM
+  intervenant 
+WHERE
+  annee_id = 2017
+  AND ose_divers.str_reduce(nom_usuel || nom_patronymique) LIKE '%lecluse%'
+  --AND code = '' -- Code Harpège
+;
 
-select * from type_population;
-select * from type_contrat_travail;
-select * from individu;
+-- liste des statuts
+SELECT
+  id, libelle
+FROM
+  statut_intervenant si
+WHERE
+  si.histo_destruction IS NULL
+;
 
-select distinct
-  i.no_individu, i.nom_usuel, i.prenom, -- individu
---  TP.LL_TYPE_POPULATION as libelle,
---  TP.HEURE_TD as service_statutaire,
-  --depassement,
-  --fonction_e_c,
-  --z_type_intervenant_id,
-  --source_id,
---  TP.C_TYPE_POPULATION as source_code,
---  tp.d_creation as validite_debut,
-  --validite_fin
-  
-  crct.c_section_cnu, -- 248
-  ca.c_section_cnu,   -- 3849
-  fa.c_section_cnu,   -- 2
-  ch.c_section_cnu,   -- 81
-  p.c_section_cnu,    -- 4251
-  coalesce( crct.c_section_cnu, ca.c_section_cnu, fa.c_section_cnu, ch.c_section_cnu, p.c_section_cnu ) as cnu
-from
-  individu i 
-  left join carriere c ON c.no_dossier_pers = I.NO_INDIVIDU
-  left join occupation oc on oc.no_dossier_pers = i.no_individu
-  left join poste p on p.no_poste = oc.no_poste
-  left join type_population tp ON TP.C_TYPE_POPULATION = C.C_TYPE_POPULATION
-  left join crct on crct.no_dossier_pers = i.no_individu
-  left join contrat_avenant ca on ca.no_dossier_pers = i.no_individu
-  left join FICHE_ACTIVITE fa on fa.no_individu = i.no_individu
-  left join chercheur ch on ch.no_individu = i.no_individu
- where p.c_section_cnu is not null
-  
+
+INSERT INTO intervenant_saisie(
+  id,
+  intervenant_id,
+  statut_id
+) VALUES (
+  intervenant_saisie_id_seq.nextval, -- id
+  1, -- intervenant_id
+  10, -- statut_id
+);
\ No newline at end of file