SQL SEVER 2008 授权语句
时间: 2023-06-13 18:05:03 浏览: 89
SQL Server 2008 的授权语句如下:
使用企业版授权:
```
USE master;
GO
--设置企业版密钥
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'external scripts enabled', 1;
RECONFIGURE;
EXEC sp_configure 'clr enabled', 1;
RECONFIGURE;
EXEC sp_configure 'filestream access level', 2;
RECONFIGURE;
EXEC sp_configure 'max server memory (MB)', 1024;
RECONFIGURE;
EXEC sp_configure 'min server memory (MB)', 512;
RECONFIGURE;
EXEC sp_configure 'max degree of parallelism', 0;
RECONFIGURE;
EXEC sp_configure 'cost threshold for parallelism', 25;
RECONFIGURE;
--检查设置是否成功
EXEC sp_configure;
GO
```
使用开发版授权:
```
USE master;
GO
--设置开发版密钥
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'external scripts enabled', 1;
RECONFIGURE;
EXEC sp_configure 'clr enabled', 1;
RECONFIGURE;
EXEC sp_configure 'filestream access level', 2;
RECONFIGURE;
EXEC sp_configure 'max server memory (MB)', 1024;
RECONFIGURE;
EXEC sp_configure 'min server memory (MB)', 512;
RECONFIGURE;
EXEC sp_configure 'max degree of parallelism', 0;
RECONFIGURE;
EXEC sp_configure 'cost threshold for parallelism', 25;
RECONFIGURE;
--检查设置是否成功
EXEC sp_configure;
GO
```
请注意,这些授权语句仅适用于 SQL Server 2008 的授权,使用前请确保已经购买了相应的许可证。
阅读全文