Você pode recuperar isso de
sys.columns
:select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name = 'TheColumn'
sys.columns
:select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name = 'TheColumn'