Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
What does your exe do? – Christian Hayter Jul 29 '12 at 12:28
Actually I am trying to read images(.jpg) metadata, Images names will come through a db table. I am using System.Windows.Media.Imaging assembly methods to get this done. Since SqlServerProject doesn't support more assembliess I am trying to call exe for the image name, which will further read it's metadata – user1546629 Jul 29 '12 at 13:28
Hmmm, I see your problem. However, shelling out to exes from SQL Server is always going to be a potential security risk. Have you considered serving up the image data to your client app, then calling the System.Windows.Media.Imaging methods on the client instead? – Christian Hayter Jul 29 '12 at 18:41
What permission option did you use when creating the assembly in SQL server? – steoleary Dec 23 '12 at 13:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.