We are using oracle -10G. We have a table CONF and a particular column is defined as VALUE NVARCHAR2(1024) . I need to increase the sizeof this column as it have to handle more data in future.
Mmmh, after some thought, not sure you can. Try it, but if you can't, you can do this instead :
1. Create a new NCLOB column
2. Copy the content of the old column to the new column using UPDATE
3. Drop the old column
4. Rename the new column
deo swaroop
Greenhorn
Joined: May 21, 2008
Posts: 28
posted
0
Hi Christophe ,
I really appreciate your help and quick response. Let me iterarte throuth the possible options.