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

Home -> Community -> Usenet -> c.d.o.server -> Select into or create <table> as & LONG datatypes - what to do?

Select into or create <table> as & LONG datatypes - what to do?

From: Glen A. Sromquist <stromqgl_at_alpac.ca>
Date: Mon, 12 Mar 2001 20:53:57 GMT
Message-ID: <FHar6.10379$Lm2.1287744@news0.telusplanet.net>

I am trying to correct a table with a high number of chained rows, so I've ran the UTLCHAIN script, analyze <table> list chained rows into chained_rows, now I want to insert the chained rows from table_a into a temp table by using:

create table table_a_chained
as select * from table_ a
where rownum in (select head_rownum from chained_rows where table_name = 'table_a')

Then delete the rows from table_a and re-insert them from the temp table.

unfortunatly one of the columns in table_a is a LONG RAW datatype and it wont allow this.

Can I work around this?

thanks in advance... Received on Mon Mar 12 2001 - 14:53:57 CST

Original text of this message

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