Cannot drop a table in SQL 2005

Posted by David George on Server Fault See other posts from Server Fault or by David George
Published on 2010-06-17T14:12:26Z Indexed on 2010/06/17 14:13 UTC
Read the original article Hit count: 290

Filed under:
|
|

I have a SQL Server 2005 SP3 box that one of my developers created a temp table on that we cannot seem to remove because it somehow got brackets in the name of the table?

SELECT Name, object_id FROM sys.objects WHERE Name LIKE '%#example%'
Results:
Name        object_id
[#example]  123828384 

Anyone know how we can get rid of this? Thanks!

© Server Fault or respective owner

Related posts about server

Related posts about sql