با سلام

من از یه Assemblies داخل Database استفاده کردم

برای این که این اسمبلی روی SQL کار کنه باید دستور :

EXEC sp_configure 'show advanced options' , '1';
GO
RECONFIGURE;
GO
-- Enable CLR
EXEC sp_configure 'clr enabled' , '1'
GO
RECONFIGURE;
GO
روی هاست اجرا بشه
ولی وقتی میخوام روی هاست اجراش کنم ارور زیر رو میده

Msg 15247, Level 16, State 1, Procedure sp_configure, Line 94
User does not have permission to perform this action.
Msg 5812, Level 14, State 1, Line 1
You do not have permission to run the RECONFIGURE statement.
Msg 15247, Level 16, State 1, Procedure sp_configure, Line 94
User does not have permission to perform this action.
Msg 5812, Level 14, State 1, Line 1
You do not have permission to run the RECONFIGURE statement.