Using the ASP.NET machine account for SQL access - secure?
We're redoing all our SQL permissions where I work because previously all our applications had used the same built-in login in their SQL connection strings. It's a bit of a headache going through and giving certain groups permissions to certain tables, views and stored procedures, so I'm wondering if it would be an efficient and secure solution to just use the ASP.NET machine account for accessing SQL.
If we converted all our applications to use the ASP.NET machine account and then gave that account the appropriate permissions on our SQL databases, would that be a good idea? Would it be secure? Anyone else done this?
Thanks
[667 byte] By [
JeTmAn] at [2007-11-11 10:26:06]

# 1 Re: Using the ASP.NET machine account for SQL access - secure?
Yes, that should be fine as long as you don't need to grant different database permissions to different users. There's also no way to track which user made which changes to the database. For more information, please see http://msdn2.microsoft.com/en-us/library/ms998258.aspx#pagguidelines0001_dataaccess