Reputation: 225
When I run select * from tableTest I am getting 0 rows with column headers. When I expand the database -->Tables I am not seeing this TableTest.
I have sa previleges on this server. Can you help me figure out why this is happening and how can I see tableTest under tables?
Upvotes: 0
Views: 74
Reputation: 13006
First to check is what object type is this.
run sp_help 'tableTest'
Upvotes: 1