2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
-- script used to check whether you have to stop/restart the database when you change
-- a particular parameter value or not
-- IMMEDIATE : no need to restart the instance
-- FALSE : you need to restart the instance
-- DEFERRED : session has to be reconnected to see the new value: but no need to stop/restart the instance
col name for a35
select
name
,issys_modifiable
--,ispdb_modifiable
from
gv$parameter
where
name = '&parameter_name'
union
select
n.ksppinm as name
, c.ksppstdf as issys_modifiable
from
sys.x$ksppi n
,sys.x$ksppcv c
where n.indx=c.indx
and lower(n.ksppinm) = lower('&parameter_name');