Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to remove NOT NULL constraint from columns?
"Andrew" <myfam_at_surfeu.fi> wrote in message
news:c5826e91.0403141700.54b3428d_at_posting.google.com...
> Hi,
> what is the easiest way to convert table so that NOT NULL constraint
> will be removed? Table is used by an application and has data.
>
> Thanks,
> Andrei
well a column is not null, not table a table
so you would do
alter table xxx <column_name> null; Received on Sun Mar 14 2004 - 19:32:24 CST