錯誤5173 不能使檔案與不同的資料庫相關
今天在sql server中attach資料庫時出現如下錯誤:
錯誤5173 不能使檔案與不同的資料庫相關
該問題可以嘗試用如下步驟解決:
1.新建乙個同名的資料庫
2.再停掉sql server(注意不要分離資料庫)
3.用要附加的資料檔案覆蓋掉這個新建的資料庫
4.再重啟sql server
5.此時開啟企業管理器時會出現置疑,先不管,執行下面的語句(注意修改其中的資料庫名)
use master
go sp_configure 'allow updates',1
goreconfigure with override
go update sysdatabases set status =32768 where name='置疑的資料庫名'
go sp_dboption '置疑的資料庫名', 'single user', 'true'
go dbcc checkdb('置疑的資料庫名')
go update sysdatabases set status =28 where name='置疑的資料庫名'
go sp_configure 'allow updates', 0
goreconfigure with override
go sp_dboption '置疑的資料庫名', 'single user', 'false'
go6.完成後一般就可以訪問資料庫中的資料了,這時,資料庫本身一般還要問題,解決辦法是,利用資料庫的指令碼建立乙個新的資料庫,並將資料導進去就行了.
Oracle資料庫不能使用索引的原因定
2012 04 25 00 00 中國it實驗室 佚名 oracle 資料庫有時候出現不能使用索引的現象,出現該現象的原因有很多,該怎麼去定位呢?本文我們主要就介紹這一部分內容。首先,我們要確定資料庫執行在何種優化模式下,相應的引數是 optimizer mode 可在 svrmgrl 中執行 sh...
資料庫啟動相關的引數檔案
資料庫啟動所需要的引數檔案 引數檔案分為初始化引數檔案 pfile 和伺服器引數檔案 spfile pfile pfile是乙個文字檔案。伺服器引數修改後,不會寫回到引數檔案,而要手動再次修改pfile.預設檔名initsid.ora spfile spfile是乙個二進位制檔案,不能用vi vim...
不同資料庫的連線
mysql string driver com.mysql.jdbc.driver 驅動程式 string url jdbc mysql localhost 3306 db name useunicode true characterencoding utf 8 連線的url,db name為資料庫...