Hi All,
I've written the application which I just recently moved to a production server and I'm having issues, getting the following error:
Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
The page is trying to perform a complex INSERT or UPDATE wrapped into a transaction. If I'm not a mamber of the PowerUsers group of the machine I get that error. If I'm added to the group I'm fine and can perform any operations. The aplication is based on Windows Active Directory security and the identity is being impersonated. I have other pieces of this application where the INSERT and UPDATE work when connecting to the SQL Server, but not this one. Connection to SQL is through 'sa' and works from Dev environment with no problem. Also there are two different domains, Dev app is running on one domain, Prod app is running on he different domain.
People who will be accessing the application can not have Power User access but will need to be able to INSERT and UPDATE. What would be the lower level of security I could add to the User to let this sort of operations?
Thank you in advance...