From 3d2cfb2e247c3dd12f3cff7a6a21698883af8d1a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Laurent=20L=C3=A9cluse?= <laurent.lecluse@unicaen.fr>
Date: Thu, 12 Nov 2020 11:53:27 +0100
Subject: [PATCH] =?UTF-8?q?+=20d'infos=20affich=C3=A9es?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 "code/Requ\303\252tes en cours.php" | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git "a/code/Requ\303\252tes en cours.php" "b/code/Requ\303\252tes en cours.php"
index 47409b8687..c1a1fde737 100755
--- "a/code/Requ\303\252tes en cours.php"	
+++ "b/code/Requ\303\252tes en cours.php"	
@@ -12,10 +12,31 @@
 $bdd = new \Application\Connecteur\Bdd\BddConnecteur();
 $bdd->setEntityManager($container->get(\Application\Constants::BDD));
 
+/*
+ *
+ * select
+  S.USERNAME,
+  s.sid, s.serial#,
+  s.program,s.osuser,
+  t.sql_id,
+  sql_text
+from
+  v$sqltext_with_newlines t,
+  V$SESSION s
+where
+  t.address =s.sql_address
+  and t.hash_value = s.sql_hash_value
+  and s.status = 'ACTIVE'
+  and s.username <> 'SYSTEM'
+order by
+  s.sid,
+  t.piece
+ */
+
 
 $sql = "
   SELECT 
-    sesion.sid, /* NO_ GET_SQL */
+    sesion.sid,
     sesion.username,
     cpu_time,
     elapsed_time,
-- 
GitLab