Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Create Table Error
Not possible as long column exists.
One way:
create table without the long column and then add the long afterwords.
create table x as select col1,col2,col3 from y where rownum < 1;;
alter table x add col4 long;
Thanks,
Amar Kumar Padhi
Software Consultant.
-----Original Message-----
From: Heikki Jantunen [mailto:hjantunen_at_hotmail.com]
Sent: Monday, January 15, 2001 4:06 PM
To: Multiple recipients of list ORACLE-L
Subject: Create Table Error
Hi,
I am receiving this kind of error:
create table prop_md_user_defined_tmp as select * from wlcs_prop_md_user_defined where 1=2
*ERROR at line 1:
any ideas how to fix...
I am using 8i
br
Hessu
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Heikki Jantunen
INET: hjantunen_at_hotmail.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). Received on Mon Jan 15 2001 - 06:33:29 CST