You are not reading the value.
Try this:

    select a.INDX NUM, a.KSPPINM NAME, a.KSPPITY TYPE, a.KSPPDESC
DESCRIPTION, b.KSPPSTVL VALUE, b.KSPPSTDF ISDEFAULT
     from sys.X_$KSPPI a, sys.X_$KSPPCV b
    where a.indx = b.indx and a.ksppinm like '%trig%'
   order by 2

-----Original Message-----
Sent: Friday, January 18, 2002 3:21 PM
To: Multiple recipients of list ORACLE-L


So I was just checking out the ixora script to look at values for hidden
parameters.  And I discovered that _system_trig_enabled is FALSE on all my
databases!
If this is the default then why is it so important to specifically set it to
false during 8.1.7 upgrades?  This value was FALSE not only for databases
I'd upgraded to 8.1.7 and therefore set specifically to false in the
init.ora at some point but also in my old 8.1.6 databases and some initial
installation 8.1.7 databases that were never upgraded.

I'm very nervous just now.


SQL>  set linesize 128
 column name format a42
 select  x.ksppinm  name,
   decode(bitand(ksppiflg/256,1),1,'TRUE','FALSE')  sesmod,  decode(
     bitand(ksppiflg/65536,3),    1,'IMMEDIATE',    2,'DEFERRED',
     3,'IMMEDIATE',    'FALSE'  )  sysmod,  ksppdesc  description
  from
   sys.x_$ksppi  x
 where  x.inst_id = userenv('Instance')
  and  translate(ksppinm,'_','#') like '#%'
  and x.ksppinm like '%trig%'
 order by  1;SQL> SQL>   2    3    4    5    6    7    8    9   10

NAME                                       SESMO SYSMOD    DESCRIPTION
------------------------------------------ ----- ---------
---------------------
-------------------------------------------
_system_trig_enabled                       FALSE FALSE     system triggers
are e
nabled


Jay Miller
x48355
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Miller, Jay
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Khedr, Waleed
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to