Viewing post 1 (of 1 total)
Hi Ankit,
U can Change Column datatype to NULL to NOT NULL.
ie.
Create Table #tbl(
AccountId varchar(16) COLLATE DATABASE_DEFAULT NOT NULL,
RatesheetId int,
TariffId int NOT NULL
)
I think its works.
It is not exact method, but...
August 4, 2011 at 11:42 pm
#1364089