Saturday, September 29, 2012

SharePoint Content DB privileges

Grant user db_owner privileges on the content database associated with that web application.
This can be done either manually (using the UI) or via PowerShell.

PS> $w = Get-SPWebApplication("webappname")
PS> $w.GrantAccessToProcessIdentity("domain\supsvc")

No comments:

Post a Comment