Azure SQL Data Warehouse - how to drop a database?

164 Views Asked by At

How to drop an Azure SQL Data Warehouse database? drop database T-SQL command does not apply to ASDW.

2

There are 2 best solutions below

0
On BEST ANSWER

Azure SQL Data Warehouse does not support DROP DATABASE as per the current documentation:

DROP DATABASE documentation

Delete your database via the Azure portal.

0
On

This is a doc bug. You can connect to the master database and run:

DROP DATABASE <database name>

I've already updated the docs to reflect this.