2010-11-01 44 views
0

我使用aspnet_regsql -S myServer -E -A mr -d anExistingDatabase創建了成員表等。當我通過Windows身份驗證連接時,我可以在SQL Server Management Studio中看到這些更改。爲什麼讀寫用戶在使用aspnet_regsql創建它們後無法看到aspnet_表?

作爲讀寫用戶登錄時,我無法在SQL Server Management Studio中看到這些更改。我無法在Visual Studio 2008 [Project/ASP.NET配置]中進行適當的更改。當我單擊ASP.NET Web應用程序管理中的安全鏈接時,出現以下錯誤:

"There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store."

回答

0

更可能是問題之一是權限。去看看你的用戶,並授予它適當的權利。

要測試這個,你可以授予它對數據庫完整的dbo權限。一旦用戶可以看到所有表格,拿走dbo並應用它應該擁有的權利。

+0

謝謝。在安全性下添加了很多新的成員角色。我不得不向服務帳戶添加一些aspnet_ *權限。 – Blanthor 2010-11-09 18:12:30

相關問題