How to delete a table from the "memory" of SQL Server

0

I had a table called tb_established in a SQL Server database and deleted it, when trying to create a table with the same name the system return error stating that it already exists, how do I erase the table from the database memory?

    
asked by anonymous 09.11.2015 / 23:31

1 answer

0

Always start your queries with: USE [BankName] If you are using Management Studio, check in the "Avoid Save Changes ..." field in Tool / Options / Design is unchecked.

    
10.11.2015 / 19:38