I wrote a CLR method for sql server 2005 and trying to run an exe through it.
Here is the code:
[Microsoft.SqlServer.Server.SqlFunction]
public static SqlString Function1()
{
System.Diagnostics.Process.Start("notepad.exe");
return new SqlString("Some string ");
}
After deploying when I try to run this CLR method in sql server 2005 it gives me following error:
Msg 6522, Level 16, State 2, Line 1
A .NET Framework error occurred during execution of user defined routine or aggregate 'Function1':
System.Security.SecurityException: Request failed.
System.Security.SecurityException:
at UserDefinedFunctions.Function1()
Is it possible to run an exe like this ?
System.Windows.Media.Imagingmethods on the client instead? – Christian Hayter Jul 29 '12 at 18:41