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 -> Re: COPY table with LOBs

Re: COPY table with LOBs

From: Brian Peasland <dba_at_remove_spam.peasland.com>
Date: Mon, 10 May 2004 20:03:41 GMT
Message-ID: <409FE01D.4595A2CA@remove_spam.peasland.com>


The user who issued the CTAS will own the table unless you tell it otherwise. To create the table under a different user, use the schema-dot notation where you prepend the table name with the owner and a '.' as follows:

CREATE TABLE test.new_table
SELECT * FROM dev.old_table;

HTH,
Brian

-- 
===================================================================

Brian Peasland
dba_at_remove_spam.peasland.com

Remove the "remove_spam." from the email address to email me.


"I can give it to you cheap, quick, and good. Now pick two out of
 the three"
Received on Mon May 10 2004 - 15:03:41 CDT

Original text of this message

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