[轉]SQL SERVER 的定序

來源:互聯網
上載者:User

標籤: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 的定序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.