查看数据库所有参数脚本

来源:互联网 发布:数据库导入数据的方法 编辑:程序博客网 时间:2024/04/30 20:33
--File name : param.sql
--Purpose : View the description, session value and instance value of an explicit/implicit parameter

set pagesize 9999 linesize 300
col Parameter for a50 
col ksppdesc for a100 
col Session_Value for a10 
col Instance_Value for a10
select a.ksppinm  "Parameter",
       a.ksppdesc,
       b.ksppstvl "Session_Value",
       c.ksppstvl "Instance_Value"
  from x$ksppi a, x$ksppcv b, x$ksppsv c
 where a.indx = b.indx
   and a.indx = c.indx
   and a.ksppinm = '&nam';
0 0
原创粉丝点击