Você pode fazer isso (no oracle, no mssql é um pouco diferente):
select count(*)
from all_objects
where object_type in ('TABLE','VIEW')
and object_name = 'your_table_name';
select count(*)
from all_objects
where object_type in ('TABLE','VIEW')
and object_name = 'your_table_name';