Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> _system_trig_enabled=false - URGENT

_system_trig_enabled=false - URGENT

From: Miller, Jay <JayMiller_at_TDWaterhouse.com>
Date: Fri, 18 Jan 2002 13:17:09 -0800
Message-ID: <F001.003F443E.20020118122030@fatcity.com>

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: JayMiller_at_TDWaterhouse.com

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: ListGuru_at_fatcity.com (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). Received on Fri Jan 18 2002 - 15:17:09 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US