Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: datatypes
Perhaps:
Export, truncate table, alter table, import
or
Create <temp_table> as select * from <orig_table>,
truncate table <orig_table>,
alter table<orig_table>,
insert from <temp_table>,
drop <temp_table>
Imran Ashraf <imran9a_at_yahoo.com>@fatcity.com on 02-05-2002 14:18:28
Please respond to ORACLE-L_at_fatcity.com
Sent by: root_at_fatcity.com
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> cc:
Hi,
i have a column set to number(3). However this needs to be changed to number (3,2). But i cannot do a straight alter table as there is data in the column.
how can i get round this?
cheers
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Imran Ashraf INET: imran9a_at_yahoo.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-LReceived on Thu May 02 2002 - 08:38:30 CDT
(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.com -- Author: INET: rchalton_at_dunnes-stores.ie 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).
![]() |
![]() |