--启用CLR支持 EXEC sys.sp_configure ‘clr enabled‘, 1 --让所在库成为可信数据库 ALTER DATABASE {dbName} SET TRUSTWORTHY ON --让数据库所有者为sa ALTER AUTHORIZATION ON DATABASE::{dbName} TO sa --顺便 --启用批处理 EXEC sys.sp_configure ‘show advanced options‘, 1 EXEC sys.sp_configure ‘xp_cmdshell‘, 1