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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Please a parameter to disable undo, like _disable_logging

Re: Please a parameter to disable undo, like _disable_logging

From: Jamie Kinney <OracleDude_at_gmail.com>
Date: Tue, 5 Oct 2004 16:33:45 -0700
Message-ID: <d4841181041005163336dde08c@mail.gmail.com>


You could do this by performing the following:

su - oracle
sqlplus "/ as sysdba"
alter system checkpoint;
shutdown abort;
startup mount;
alter database open read only;

-Jamie

On Tue, 5 Oct 2004 19:18:00 -0400, Juan Carlos Reyes Pacheco <jreyes_at_dazasoftware.com> wrote:
> Hi, I searched but I didn't find it, please do you know some parameter like
> _disable_logging (disables logging),
> to disable undo.
>
> SELECT KSPPINM, KSPPSTVL
> FROM X$KSPPI A, X$KSPPSV B
> WHERE A.INDX=B.INDX AND SUBSTR(KSPPINM,1,1) = '_'
> and upper(KSPPINM) like '%UNDO%' ;
>
> This is only to speed my test database, thanks.
>
> Juan Carlos Reyes Pacheco
> OCP
> --
> http://www.freelists.org/webpage/oracle-l
>

--
http://www.freelists.org/webpage/oracle-l
Received on Tue Oct 05 2004 - 18:29:18 CDT

Original text of this message

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