大聲公
目前分類:SQL SERVER (50)
- Aug 13 Wed 2014 15:25
Cannot alter the user 'dbo'. (Microsoft SQL Server, Error: 15150)
- Apr 30 Tue 2013 16:32
Microsoft SQL Server, Error: 3729
要刪除帳號或是Schema時出現:
Cannot drop schema '[SchemaName]' because it is being referenced by object '[TableName]' (Microsoft SQL Server, Error: 3729)
Solution:
USE [DATABASENAME]
- Mar 04 Mon 2013 14:23
The error message in SQL Server Configuration Manager:The remote procedure call failed.[0x800706be]
OS:Windows 2012
安裝完SQL Server 2008 R2後,在SQL Server Configuration Manager的SQL Server Services中出現:
The remote procedure call failed.[0x800706be]
無法看到service的列表,
在安裝SQL Server 2008 R2 SP2後獲得解決
- Jan 04 Fri 2013 15:59
Database Suspect on SQL Server 2008 R2
- Dec 27 Thu 2012 17:18
SQL Server Service修改啟動帳號的密碼時出現:WMI Provider Error - Access is denied 0x80070005
因為SQL Server Service的啟動帳號是".\LocalAccount",
修改密碼時出現WMI Provider Error - Access is denied 0x80070005的錯誤訊息,
Solution:
將啟動帳號的欄位中的值由".\LocalAccount"改為"LocalAccount",
在輸入新密碼,就沒有出現錯誤訊息了
- Sep 03 Mon 2012 11:13
Database status is Suspect in SQL Server 2000
- Aug 10 Fri 2012 15:27
SQL Server 2008 R2各版本的功能差異
- Aug 01 Wed 2012 17:34
SQL Server Installation Center可以得知安裝資訊
Start -> All Programs -> Microsoft SQL Server <Version Number> -> Configuration Tools -> SQL Server Installation Center
在Tools section中,可以在Installed SQL Server features discovery report得到安裝在本機服務器中SQL Server的相關信息
- Aug 01 Wed 2012 17:21
判斷Table是否存在
方法一:
IF EXISTS (SELECT * FROM sys.tables WHERE name = N'[Table_Name]')
DROP TABLE [Table_Name]
方法二:
- Jul 26 Thu 2012 18:21
Error 3117 - The log or differential backup cannot be restored because no files are ready to rollforward
Restore database (restore full + transaction log) 時出現下列錯誤:
Msg 3117, Level 16, State 1, Line 1
The log or differential backup cannot be restored because no files are ready to roll forward.
Msg 3013, Level 16, State 1, Line 1
RESTORE LOG is terminating abnormally.
- Jul 26 Thu 2012 18:11
Error 3049 - BACKUP detected corruption in the database log
Backup Transaction Log時出現錯誤,
Msg 3049, Level 16, State 1, Line 1
BACKUP detected corruption in the database log. Check the errorlog for more information.
Msg 3013, Level 16, State 1, Line 1
BACKUP LOG is terminating abnormally.
- May 31 Thu 2012 15:08
查明無法Shrink Transaction log
等了很久或是執行很多次都無法Shrink Transaction log,
SELECT log_reuse_wait_desc FROM sys.databases WHERE name = '[DATABASENAME]'
看看log_reuse_wait_desc這個欄位或許可以有些方向
- May 31 Thu 2012 11:48
SQL Server Agent XPs Disabled
SSMS中看到的SQL Server Agent是呈現"Agent XPs Disabled"的狀態,
這是因為SQL Server沒有啟用 Agent XPs 的選項,
未啟用這個選項時,在SSMS中就無法查看及使用SQL Server Agent這個節點中的所有功能.
- May 29 Tue 2012 18:45
SQL Server Error 15138
要刪除帳號時出現:
The database principal owns a schema in the database, and cannot be dropped. (Microsoft SQL Server, Error: 15138)
Solution:
- May 07 Mon 2012 11:48
SQL Server Agent History消失
- Mar 22 Thu 2012 19:23
給予一般帳號可以使用sp_who2的指令來查詢所有db的狀況
sysadmin角色可以執行sp_who2來查詢到所有db的狀況,
但是若是一般帳號執行sp_who2,就只會顯示出所有有權限的那個db的狀態,
要讓一般帳號也可以查詢所有db的狀況,又不想讓這個帳號加入sysadmin角色,
可以授與這個帳號檢視服務器狀態的權限,
GRANT VIEW SERVER STATE TO <login_name>
- Mar 22 Thu 2012 19:16
建立 .Net的Session DB
開啟Command Prompt
輸入下列指令:
#>CD\
#>CD Windows\Microsoft.NET\Framework\v2.0.50727
#>aspnet_regsql.exe -S <database_instancename> -U <user_name> -P <password> -ssadd -sstype c -d <session_db_name>
- Feb 01 Wed 2012 20:10
The ALTER TABLE statement conflicted with the FOREIGN KEY constraint
建立Foreign Key時出現:The ALTER TABLE statement conflicted with the FOREIGN KEY constraint的訊息,
將Table中的data清空,在重新建立即可
- Nov 01 Tue 2011 19:57
The selected Subscriber does not satisfy the minimum version compatibility level of the selected publication.
在SQL Server 2005中的Publication中,要新增Subscription時,
若Subscription是連線到SQL Server 2008時,
會出現The selected Subscriber does not satisfy the minimum version compatibility level of the selected publication.
- Aug 11 Thu 2011 14:55
Cannot drop the database 'XXXXXX' because it is being used for replication
Solution:
exec sp_removedreplication 'db_name'