set pages 100 set lines 400 col init_value format a36 col spfile_value format a36 col name format a38 SELECT P.NAME, P.VALUE INIT_VALUE, S.VALUE SPFILE_VALUE FROM V$PARAMETER P JOIN V$SPPARAMETER S ON P.NAME=S.NAME WHERE P.ISBASIC='TRUE' ORDER BY NAME;
Minimalistic Oracle contains a collection of practical examples from my encounters with Oracle technologies. When relevant, I also write about other technologies, like Linux or PostgreSQL. Many of the posts starts with "how to" since they derive directly from my own personal experience. My goal is to provide simple examples, so that they can be easily adapted to other situations.
Wednesday, November 27, 2013
How to compare the content of memory parameter and spfile parameters
### Compare static (pfile) and dynamic (spfile) parameter setting:
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment