由于配额限制,无法创建表格

时间:2018-07-12 16:06:10

标签: create-table quota azure-sqldw

我正在尝试在Azure SQL数据仓库中创建一个表,该表的最大数量为10,000。

create table dbo.todd (now_ts  datetime);

Error Msg: Msg 105000, Level 16, State 1, Line 1
The operation failed due to a quota of no more than 10000 Tables per Database.

执行以下查询以获取表数:

SELECT count(*)
FROM [sys].[tables] 

results = 178

SELECT count(*)
FROM [sys].[external_tables]

results = 6

我想念什么吗?

1 个答案:

答案 0 :(得分:2)

这可能是由某种外部表创建/删除模式引起的。当前正在推出修复程序,以防止此模式在表创建中引起误报。