SQL Server 2008使用問題集錦

2021-09-05 21:32:34 字數 1315 閱讀 8635

由於工作需要使用了sql 2008資料庫,遇到一些問題,在此記錄下來

解決辦法:如果要去掉此提示,開啟sql 2008 在最上面 工具-〉選項-〉左側有個 設計器-〉表設計器和資料庫設計器 -> 阻止儲存要求重新建立表的更改(右側) 把鉤去重新啟動2008即可。

2.在資料庫還原的時候出現「還原 對於 「***xx」 伺服器 失敗。  (microsoft.sqlserver.smoextended)"錯誤的解決方法:

在sql server 2008 中還原資料庫的時候出現以上錯誤,提示的詳細資訊如下:

還原 對於 伺服器「bw-star」失敗。  (microsoft.sqlserver.smoextended)

------------------------------

有關幫助資訊,請單擊: 還原+server&linkid=20476

------------------------------

程式位置:

在 microsoft.sqlserver.management.smo.restore.sqlrestore(server srv)

在 microsoft.sqlserver.management.sqlmanagerui.sqlrestoredatabaseoptions.runrestore()

system.data.sqlclient.sqlerror: 因為資料庫正在使用,所以無法獲得對資料庫的獨佔訪問權。 (microsoft.sqlserver.smo)

------------------------------

有關幫助資訊,請單擊:

------------------------------

程式位置:

在 microsoft.sqlserver.management.smo.executionmanager.executenonquerywithmessage(stringcollection queries, servermessageeventhandler dbccmessagehandler, boolean errorsasmessages)

在 microsoft.sqlserver.management.smo.backuprestorebase.executesql(server server, stringcollection queries)

在 microsoft.sqlserver.management.smo.restore.sqlrestore(server srv)

解決辦法:

在還原對話方塊中選擇「選項」在 」還原選項「 中選擇」覆蓋現有資料庫(with replace)"選項,或者選擇其他選項都可,若不選則不能正常還原

Sql Server 2008 收縮日誌

收縮日誌 alter database dnname set recovery with no wait goalter database dnname set recovery 簡單模式 gouse dnname godbcc shrinkfile n dnname log 11,truncate...

徹底解除安裝sql server2008

微軟的開發工具在按裝和解除安裝時都讓人頭疼,只能是裝在c盤,裝在其他盤時最容易出事 在重新按裝的時候一定要把以前的例項解除安裝完才行。要不就會出錯。在解除安裝sql server後,其實還沒有完成,還要把登錄檔資訊完全刪乾淨,下面就將教您徹底刪除sql server登錄檔的方法,供您參考。在解除安裝...

SQLServer2008語句查詢

1 判斷資料庫是否存在 if exists select from sys.databases where name 資料庫名 drop database 資料庫名 2 判斷表是否存在 if exists select from sysobjects where id object id 表名 an...