You could retrieve that from sys.columns:
select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name="TheColumn"
You could retrieve that from sys.columns:
select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name="TheColumn"