Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: column does not allow nulls. INSERT fails

    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...

Viewing post 1 (of 1 total)