Check if below query works
if exists(
select 1 from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME = 'DimEmployee' and COLUMN_NAME = 'FirstName'
)
begin
select 'exists'
end
else
begin
select 'not exists'
end
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav