2014-01-07
1. 要确定没有其他人连接当前的数据库. 可以用sp_who查看,再用kill @spid强制关闭其连接. 2. 执行SQL,修改DB的Collate属性 USE [master] GO ALTER DATABASE [My_DB] COLLATE Finnish_Swedish_CS_AS GO
3. 得到原先用到的Collate
Use [My_DB] select distinct collationid from syscolumns 4. 设置允… http://www.wfuyu.com/sqlserver/10181.html
2014-05-23
添加 1、向Loginfo中添加新列“newcomlum1” ,int型,
ALTER TABLE Loginfo ADD newcomlum1 int NULL
2、表:LogInfo 代码
--判断要添加列的表中是否有主键 if exists(select 1 from sysobjects where parent_obj=object_id('LogInfo') and xtype='PK') begin print '表中已经有主键,列… http://www.wfuyu.com/sqlserver/10141.html