11 lines
389 B
SQL
11 lines
389 B
SQL
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
|
|
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
|
|
|
|
SET TERMOUT OFF
|
|
COL spid NEW_VALUE odsid_spid
|
|
SELECT spid FROM v$process WHERE addr = (SELECT /*+ NO_UNNEST */ paddr FROM v$session WHERE sid = &1);
|
|
COL spid CLEAR
|
|
SET TERMOUT ON
|
|
|
|
ORADEBUG SETOSPID &odsid_spid
|