5

I'm unable to drop a table on Sql Azure. Previously I cancelled a query that involves this table, because takes to long on execute. Maybe other procedure is blocking me.

How can I solve this problem on Sql Azure?

Thanks.

eicruzado
  • 307
  • 2
  • 3
  • 7

1 Answers1

0

Try Restarting and Apply:

IF EXISTS (SELECT * FROM [tablename]) DROP TABLE [tablename]
mrbitzilla
  • 368
  • 3
  • 11