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.
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.
Try Restarting and Apply:
IF EXISTS (SELECT * FROM [tablename]) DROP TABLE [tablename]