The SQL Server 2008 R2 Standard Editon does NOT contain the “Proactive Caching” feature.
Help link,
a. http://msdn.microsoft.com/en-us/library/ms143761.aspx
b. http://support.microsoft.com/kb/941153
EXEC sp_configure 'show advanced options' , '1';
reconfigure; EXEC sp_configure 'clr enabled' , '1' ;
reconfigure; EXEC sp_configure 'show advanced options' , '0';
reconfigure;
An error occurred in the Microsoft .NET Framework while trying to load assembly id 65536. The server may be running out of resources, or the assembly may not be trusted with PERMISSION_SET = EXTERNAL_ACCESS or UNSAFE.
--alter database "Master" set trustworthy on
The database owner SID recorded in the master database differs from the database owner SID recorded in database
USE <DatabaseName>
GO
EXEC dbo.sp_changedbowner ‘sa’
use FSD_ODS
go
--To get owner SID recorded in the master database for the current database
SELECT owner_sid FROM sys.databases WHERE database_id=DB_ID()
--To get the owner SID recorded for the current database owner
SELECT sid FROM sys.database_principals WHERE name=N'dbo'
SELECT * FROM sys.database_principals
http://blog.strictly-software.com/2009/09/database-owner-sid-recorded-in-master.html
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
-- ALTER ASSEMBLY [DataBase Name] WITH PERMISSION_SET = EXTERNAL_ACCESS
ALTER ASSEMBLY [DataBase Name] WITH VISIBILITY = ON
http://msdn.microsoft.com/en-us/library/ms186711.aspx