Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在 Sql Azure 上删除表。以前我取消了一个涉及该表的查询,因为执行需要很长时间。也许其他程序阻止了我。
如何在 Sql Azure 上解决此问题?
谢谢。
Try Restarting and Apply:
IF EXISTS (SELECT * FROM [tablename]) DROP TABLE [tablename]