|
[oracle@rac01 ~]$ sqlplus / as sysdba;
SQL*Plus: Release 10.2.0.4.0 - Production on Tue Oct 13 08:03:52 2020
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
SQL> select s.sql_text,p.spid,se.program from v$sql s,v$session se,v$process p
where s.sql_id=se.sql_id
and p.addr=se.paddr
and p.spid=21491; 2 3 4
no rows selected
是没有记录的,sql_id与prev_sql_id是空的 |
|