Can u try it for the following way:
Ex:
create
table t
(
id int not null
,
col1 varchar (30) not null default ''
,
col2 varchar (30) not null default ''
)
go
insert
into t
select
1, 'abc', 'xyz'
union
select
2, 'xxx', 'abc'
union
select
3, 'hai', 'bye'
go
select
* from t
go
alter
table t add col3 bit not null default 0
go
Kishore.P