asp.net|server|sqlserver
由於本人機器上僅安裝SQLSERVER2005,而沒有裝SQLSERVER EXPRESS,於是在部署user profile時遇到了aspnetdb.mdf無法串連的問題,經過一番折騰,總算解決了,下面把經驗寫下來與大家分享。
由於沒有aspnetdb.mdf資料庫,因此得先建立一個,這個可以通過aspnet_regsql.exe完成,該程式位於C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\下。運行它之後會彈出 [圖1] 的視窗:
圖1
按"Next >"按鈕,進入圖2
圖2
在圖2中,我們會發現除了有設定資料庫外,還有刪除資料庫的功能,以後說不定可以派上用場,現在自然選Configure SQL Server for application services,按"Next >"按鈕,進入圖3。
圖3
現在進入資料庫選擇介面,如果SQLSERVER就安裝在本地的話,可以不用改任何東西,直接按"Next >"。這裡的Database顯示為<default>,表示預設資料庫名為aspnetdb,你也可以根據自己的需要更改名稱。
圖4
最後進入圖4,現在按"Next >"就可以開始安裝資料庫了,當Finish按鈕亮起時,表明資料庫安裝成功,一切順利!
接下來是設定資料庫連接字串。
預設情況下,web.config中的LocalSqlServer屬性是這樣配置的:
<connectionStrings>
<add name="LocalSqlServer" connectionString="Data Source=./SQLExpress;Integrated Security=true;AttachDBFileName=|DataDirectory|aspnetdb.mdf;User Instance=True"
providerName="System.Data.SqlClient"/>
</connectionStrings>
該連接字串是專門為SQLSERVER EXPRESS準備的,如果沒有安裝SQLSERVER EXPRESS就會出現以下錯誤
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
這表明串連根本無法建立。為此,我試圖把DataSource改為./本地sqlserver instance名,結果還是報錯:
Login Failed for User MachineName\ASPNET
又試圖把User Instance設為false,再次報錯:
Invalid value for key 'attachdbfilename'.
其實出錯原因很簡單,因為App_Data目錄下沒有aspnetdb.mdf這個檔案。在網上查了一下,終於找到瞭解決方法,重新設定連接字串為
<add name="LocalSqlServer" connectionString="Data Source=[Instance Name];Initial Catalog=aspnetdb;Integrated Security=false;UID=sa;PWD=xxxxxx"
其實就是標準SqlServer連接字串,鬱悶……