0
I had a table called tb_state in an SQL Server database and deletes it, when trying to create a table with the same name the system returns error stating that it already exists, how do I delete the table from the database memory ?
0
I had a table called tb_state in an SQL Server database and deletes it, when trying to create a table with the same name the system returns error stating that it already exists, how do I delete the table from the database memory ?
Browser other questions tagged sql-server
You are not signed in. Login or sign up in order to post.
You deleted by interface or by code ? Strange because I’ve never seen it happen
– Filipe
Via interface, the same error occurs with stored procedures.
– Mayllon Baumer
guy already tried by code? drop table name_table
– Filipe
I tried yes, it informs that deleted, but when trying to save returns error.
– Mayllon Baumer
So, to work I had to close and open sql server. Every time I delete an object from the database I need to open and close the application.
– Mayllon Baumer
See if it helps : http://stackoverflow.com/questions/9792379/drop-table-in-sql-server-by-sql-server-management-studio
– Filipe