tags:

views:

21

answers:

1

In SQL Management Studio, I deleted a table, and created it again using a SQL query. Now in code I cannot call it using dbo. something something. It just doesn't appear in the intellisense.

Any suggestions on how to make this work?

Edit: I can't delete the table again and RE create it with [dbo] tag. Any other solutions?

+3  A: 
ALTER SCHEMA dbo TRANSFER MyName.MyTableName

reference

erikkallen