我需要改变并行度,但是当我运行时我会收到错误
Could not find stored procedure 'sp_configure'.
这是我的脚本
USE test;
GO
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO
EXEC sp_configure 'max degree of parallelism', 8;
GO
RECONFIGURE WITH OVERRIDE;
GO
答案 0 :(得分:4)
您似乎正在使用sp_configure
不可用的Azure SQL数据库。请改用ALTER DATABASE SCOPED CCONFIGURATION来配置MAXDOP
。