您的位置:首页 > 数据库

Scripts:找出后台trace文件的脚本sess_user_trace_file_location.sql

2014-06-03 09:38 387 查看
-- +----------------------------------------------------------------------------+

-- |                          Jeffrey M. Hunter                                 |

-- |                      jhunter@idevelopment.info                             |

-- |                         www.idevelopment.info                              |

-- |----------------------------------------------------------------------------|

-- |      Copyright (c) 1998-2012 Jeffrey M. Hunter. All rights reserved.       |

-- |----------------------------------------------------------------------------|

-- | DATABASE : Oracle                                                          |

-- | FILE     : sess_user_trace_file_location.sql                               |

-- | CLASS    : Session Management                                              |

-- | PURPOSE  : Oracle writes TRACE to the directory based on the value of your |

-- |            "user_dump_dest" parameter in init.ora file. The trace files    |

-- |            use the "System Process ID" as part of the file name to ensure  |

-- |            a unique file for each user session. The following query helps  |

-- |            the DBA to determine where the TRACE files will be written and  |

-- |            the name of the file it would create for its particular         |

-- |            session.                                                        |

-- | NOTE     : As with any code, ensure to test this script in a development   |

-- |            environment before attempting to run it in production.          |

-- +----------------------------------------------------------------------------+

SET TERMOUT OFF;

COLUMN current_instance NEW_VALUE current_instance NOPRINT;

SELECT rpad(instance_name, 17) current_instance FROM v$instance;

SET TERMOUT ON;

PROMPT 

PROMPT +------------------------------------------------------------------------+

PROMPT | Report   : User Session Trace File Location                            |

PROMPT | Instance : ¤t_instance                                           |

PROMPT +------------------------------------------------------------------------+

SET ECHO        OFF

SET FEEDBACK    6

SET HEADING     ON

SET LINESIZE    180

SET PAGESIZE    50000

SET TERMOUT     ON

SET TIMING      OFF

SET TRIMOUT     ON

SET TRIMSPOOL   ON

SET VERIFY      OFF

CLEAR COLUMNS

CLEAR BREAKS

CLEAR COMPUTES

COLUMN "Trace File Path" FORMAT a80 HEADING 'Your trace file with path is:'

SELECT

    a.trace_path || ' > ' || b.trace_file "Trace File Path"

FROM

    (  SELECT value trace_path 

       FROM   v$parameter 

       WHERE  name='user_dump_dest'

    ) a

  , (  SELECT c.instance || '_ora_' || spid ||'.trc' TRACE_FILE 

       FROM   v$process,

              (select lower(instance_name) instance from v$instance)  c

       WHERE  addr = ( SELECT paddr 

                       FROM v$session 

                       WHERE (audsid, sid) = (  SELECT

                                                    sys_context('USERENV', 'SESSIONID')

                                                  , sys_context('USERENV', 'SID') 

                                                FROM dual

                                              )

                     )

    ) b

/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐