ASP.NET 2.0基於SQLSERVER 2005的aspnetdb.mdf部署

來源:互聯網
上載者:User
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連接字串,鬱悶……



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.