I want to delete tables that have special characters ~ and / When I try to drop the tables

drop table ae1.AGR_TEXTS~

I get the following error:

Msg 102, Level 15, State 1, Line 1
Incorrect syntax near '~'.

I am using SQL Server 2005 and SQL_Latin1_General_CP850_BIN2 collation.

Please suggest.

Thanks, Shashank

link|improve this question
feedback

1 Answer

Surround the table name with [] brackets:

drop table ae1.[AGR_TEXTS~]
link|improve this answer
1  
Will that work? I'd suggest drop table ae1.[AGR_TEXTS~] - but didn't test your statement either. – Arvo Jan 17 '11 at 8:23
Hi Andomer,The second one worked. – Shashank Jan 17 '11 at 8:32
@Arvo: You're right of course, the brackets should be around the table and/or the database name, but not both. Answer edited. – Andomar Jan 17 '11 at 11:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.