Re: HELP: changing column width

From: Frank Greene <74200.427_at_CompuServe.COM>
Date: 15 Dec 1994 00:00:24 GMT
Message-ID: <3co0uo$ra8$1_at_mhade.production.compuserve.com>


create table temp as
select * from your_table;

drop table your_table;

create table your_table
(new column definitions IN SAME ORDER);

insert into your_table
select * from temp;

drop table temp; Received on Thu Dec 15 1994 - 01:00:24 CET

Original text of this message