Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: _system_trig_enabled=false - URGENT
Of course, had you looked at the script before you executed it, and then made sure that you understood what it was doing, you would never have given yourself such a fright.
Thank you,
Paul Sherman
DBA
voice - 781-501-4143 (office)
fax - 781-278-8341 (office)
email - psherman_at_elcom.com
-----Original Message-----
Sent: Friday, January 18, 2002 5:51 PM
To: Multiple recipients of list ORACLE-L
Thanks!
This gives the correct information.
I guess I'm inclined to trust anything from ixora blindly :)
Jay Miller
-----Original Message-----
Sent: Friday, January 18, 2002 4:56 PM
To: Multiple recipients of list ORACLE-L
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 descriptionfrom
NAME SESMO SYSMOD DESCRIPTION ------------------------------------------ ----- --------- --------------------- ------------------------------------------- _system_trig_enabled FALSE FALSE system triggersare e
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).
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).
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).
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 - 18:37:08 CST