I am following the instruction in Microsoft Learn Page
As I copy and execute the SQL queries in Azure Data Studio, it said it has syntax error
You can refer the code in the above link and the result in the below picture
Thanks for your help
I am following the instruction in Microsoft Learn Page
As I copy and execute the SQL queries in Azure Data Studio, it said it has syntax error
You can refer the code in the above link and the result in the below picture
Thanks for your help
You can not create tables in master database. You have to select the data warehouse database.
I searched a lot and found that if you want to create table in master DB, the user must be the dbcreator
role.
Reference:How to fix "CREATE DATABASE permission denied in database "master" ?
But for Azure SQL database and SQL Data Warehouse, the dbcreator
role is not supported. We can not create table in master db, even with ServerAdmin.
You could reference:
Hope this helps