Re: [GENERAL] How to alter the size of a column

2000-08-01 Thread Stephan Szabo
Right now the best way is probably: create table newtable ( ... new column info ... ) insert into newtable select * from oldtable; alter table oldtable rename to old_oldtable; alter table newtable rename to oldtable; In the second line, you may not be able to get away with a * if you're doing m

Re: [GENERAL] How to alter the size of a column

2000-07-31 Thread Chris Bitmead
Michael Talbot-Wilson wrote: > > > I want to alter the size of a column, say from char(40) to char(80), > > but it seem that > > the ALTER does not support such operation, nor does it support column > > removing. > > > > How can I do for this ? > > I would also like to know how to do

Re: [GENERAL] How to alter the size of a column

2000-07-31 Thread Michael Talbot-Wilson
> I want to alter the size of a column, say from char(40) to char(80), > but it seem that > the ALTER does not support such operation, nor does it support column > removing. > > How can I do for this ? I would also like to know how to do both of these things.

[GENERAL] How to alter the size of a column

2000-07-31 Thread Cheng Kai
Hi, I want to alter the size of a column, say from char(40) to char(80), but it seem that the ALTER does not support such operation, nor does it support column removing. How can I do for this ? Thanks