आप यह कर सकते हैं (ओरेकल में, mssql में थोड़ा अलग है):
select count(*)
from all_objects
where object_type in ('TABLE','VIEW')
and object_name = 'your_table_name';
आप यह कर सकते हैं (ओरेकल में, mssql में थोड़ा अलग है):
select count(*)
from all_objects
where object_type in ('TABLE','VIEW')
and object_name = 'your_table_name';