简体   繁体   中英

Unable to drop table on Sql Azure

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.

尝试重新启动并应用:

IF EXISTS (SELECT * FROM [tablename]) DROP TABLE [tablename]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM