> hi ,
>
> i have some simple doubt in DB2
> 1. can we disable or enable an INDEX.
What do you have in mind with disable/enable? Should the index not be used
during queries or not being maintained during DML statements?
> 2. can we drop a column from a table .
Not yet. But the Control Center provides a way to do that.
> 3. can we change the datatype of a column i.e say from varchar to
> integer
No.

Signature
Knut Stolze
DB2 Information Integration Development
IBM Germany
> hi ,
>
> i have some simple doubt in DB2
> 1. can we disable or enable an INDEX.
DROP INDEX....
> 2. can we drop a column from a table .
In DB2 V8 for zOS yes. In DB2 for LUW this will be supported in Viper,
today (V8.2) there is GUI driven support in the control center.
> 3. can we change the datatype of a column i.e say from varchar to
> integer
In DB2 for LUW you can INCREASE the length of a VARCHAR column.
In Viper you will be able to do any alter which cannot cause loss of data.
VARCHAR->INTEGER: No
INTEGER->VARCHAR: I think yes in Viper.
Cheers
Serge

Signature
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Bob [IBM] - 26 Mar 2006 22:40 GMT
>> hi ,
>>
[quoted text clipped - 14 lines]
> Cheers
> Serge
Just be careful on the GUI driven option as I believe the underlying
task is to drop and recreate the table?
Bob