tak*_*aks 3 sql sql-server azure-sql-database
我需要更改并行度,但是当我运行时出现错误
Could not find stored procedure 'sp_configure'.
Run Code Online (Sandbox Code Playgroud)
这是我的脚本
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
Run Code Online (Sandbox Code Playgroud)