Duh,oh
Thanks

But Jared , the problem was that the FM itself told me to type :

CREATE PRIVATE OUTLINE p_ol1 FROM PRIVATE p_ol1;

Ref :  Oracle 9i Database Performance Tuning Guide and Reference a96533.pdf
page 7-9 , Chapter 7 : Using Plan Stability to Preserve Execution Plans,
Section : Example of Editing Outlines

Would really appreciate your input about the ora-03113 and core dump problem
I keep getting when I use create_stored_outlines  :

Suppose two users scott and hr have select any table, create any outline
privileges and select_catalog_role.

SQL> conn scott/[EMAIL PROTECTED]
Connected.

SQL> select count (*) from scott.emp ;

  COUNT(*)
----------
         6


SQL> conn hr/[EMAIL PROTECTED]
Connected.

SQL> alter session set create_stored_outlines=hr;
Session altered.

SQL> select count (*) from scott.emp ;

  COUNT(*)
----------
         6

SQL> create table test as select * from scott.emp ;
create table test as select * from scott.emp
           *
ERROR at line 1:
ORA-03113: end-of-file on communication channel
(And I get a core dump file )
The same thing happens irrespective of the category name I use in alter
session set create_stored_outlines , even when i specify alter session set
create_stored_outlines=default;, and even when I use random values.




But when I do the following then no problems :

SQL> conn hr/[EMAIL PROTECTED]
Connected.
SQL> alter session set create_stored_outlines=false;

Session altered.

SQL> create table test as select * from scott.emp ;

Table created.


Any ideas ?
.............



----- Original Message -----
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Tuesday, September 09, 2003 21:14


>
> Perhaps some RTFM is in order here.
>
> A studios examination of the fine docs
> might suggest 'create or replace'.
>
> Jared
>
> On Tue, 2003-09-09 at 05:59, [EMAIL PROTECTED] wrote:
> > Hello list , I am using Oracle  9.2.0.1.0 Enterprise edition on windows.
> >
> >
> > I get an error while trying to resynchronze a private outline after I
have
> > edited it.
> > I get this error when I use the identity statement
> >
> > SQL> create private outline test from private test  ;
> > create private outline test from private test
> > *
> > ERROR at line 1:
> > ORA-18004: outline already exists
> >
> > However the following succeeds :
> > SQL> exec dbms_outln_edit.refresh_private_outline ('TEST' ) ;
> >
> > PL/SQL procedure successfully completed.
> >
> > Any ideas why the identitiy statement fails ?
> > .......................................................................
> >
> > --
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > --
> > Author: <[EMAIL PROTECTED]
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
> > San Diego, California        -- Mailing list and web hosting services
> > ---------------------------------------------------------------------
> > 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.net
> --
> Author: Jared Still
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
> San Diego, California        -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> 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.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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