標籤:blog http io ar os 使用 sp for 資料
如何更改SQL SERVER 2000的定序
Alter datebase Alter datebase 資料庫 Chinese_PRC_BIN
ALTER TABLE tb
ALTER COLUMN colname nvarchar(100) COLLATE Chinese_PRC_CI_AS
--不區分大小寫
ALTER TABLE tb
ALTER COLUMN colname nvarchar(100) COLLATE Chinese_PRC_CS_AS
--區分大小寫
使用如下命令,可以獲得更多的規則:
SELECT *
FROM ::fn_helpcollations()
更改資料庫定序後,表中欄位的定序仍然沒變,如果在企業管理器中在設計表的介面去一個欄位一個欄位的改太累人了,
EXEC sp_configure ‘allow updates‘,1 RECONFIGURE WITH OVERRIDE
update dbo.syscolumns set collationid=65572 where collationid=53284
EXEC sp_configure ‘allow updates‘,0 RECONFIGURE WITH OVERRIDE
go
修改資料庫的定序的時候,要確保你的資料庫沒有任何串連.
最好在查詢分析器中用下面的方法,注意修改資料庫名:
/*
關閉使用者開啟的進程處理
*/
use master
go
if exists (select * from dbo.sysobjects where id = object_id(N‘[dbo].[p_killspid]‘) and OBJECTPROPERTY(id, N‘IsProcedure‘) = 1)
drop procedure [dbo].[p_killspid]
GO
create proc p_killspid
@dbname varchar(200) --要關閉進程的資料庫名
as
declare @sql nvarchar(500)
declare @spid nvarchar(20)
declare #tb cursor for
select spid=cast(spid as varchar(20)) from master..sysprocesses where dbid=db_id(@dbname)
open #tb
fetch next from #tb into @spid
while @@fetch_status=0
begin
exec(‘kill ‘[email protected])
fetch next from #tb into @spid
end
close #tb
deallocate #tb
go
--關閉使用者串連
exec p_killspid ‘資料庫名‘
go
--修改定序
Alter datebase Alter datebase 資料庫名 Chinese_PRC_BIN
[轉]SQL SERVER 的定序