Skip to content
Snippets Groups Projects
Commit 3d2cfb2e authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

+ d'infos affichées

parent 7ae4ec84
No related branches found
No related tags found
1 merge request!55Ll bug report services
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment