Register Login

How to Find the Parameter Whether its Static or Dynamic?

Updated May 18, 2018

Hello Friends,
How to find the parameter whether its static or dynamic? 
Do you know any solution for my above mentioned query? If yes then please explain everything which will be the involved in this complete process.

Thanks in Advance!


Comments

  • 16 Nov 2015 5:11 pm Romil Tripathi

    You need to Check v$parameter.

  • 16 Nov 2015 5:12 pm Chandan Singh Parihar

    Just perform Issys_modifiable from v$parameter.

  • 16 Nov 2015 5:12 pm Jyoti Pandey

    Check the following:
    1.v$parameter if the values are all shows null then its using dynamic.
    2. Show parameter spfile. If it has the path the its using dymamic

  • 16 Nov 2015 5:13 pm Sugandh

    Show the parameter. If it display the path that is sp file or its dispaly the null then its called p file.

  • 16 Nov 2015 5:13 pm Sushma

    You need to show parameter spfile;

  • 16 Nov 2015 5:13 pm Rohit Mahajan

    sql>select name,issys_modifiable from v$parameter;


×