Page 1 of 1

Session Informations

Posted: Sat 30 Dec 2017 00:29
by eric.garcia38
Hello,


is there a way to retrieve the information of the session ? I mean
all or some info from the Select * From V$session....


thx

eric

Re: Session Informations

Posted: Thu 04 Jan 2018 08:58
by MaximG
You can get the information you are interested in by executing a query using the OraQuery component :

Code: Select all

 ...
  OraQuery.SQL.Text := 'Select * From v$session';
  OraQuery.Open;
  ...