update ts_tables set tname=convert(varchar,c.value) from
(select * from ::fn_listextendedproperty('MS_Description','user','dbo','table',default,default,default)) c
where tid=c.objname;
(select * from ::fn_listextendedproperty('MS_Description','user','dbo','table',default,default,default)) c
where tid=c.objname;
在Sql2000中一直是这样使用的没有发现问题。可是最近放到Sql Express2005中运行,确发生了如下错误:
Msg 468, Level 16, State 9, Line 1
Cannot resolve the collation conflict between "Latin1_General_CI_AI" and "Chinese_PRC_CI_AS" in the equal to operation.
调试了半天才定位到是这条语句引发的错误,google了一下,发现有人说是系统数据库和用户数据库的语言不一样造成的,可是我查看了一下好像不是这方面的问题!在Sql Express中所有库的语言代码都是这个Chinese_PRC_CI_AS 经过一段的查找学习,终于找到了一个解决方法!在语句中使用COLLATE指定语言,语句改为下面这个样子,运行通过了:
Cannot resolve the collation conflict between "Latin1_General_CI_AI" and "Chinese_PRC_CI_AS" in the equal to operation.
update ts_tables set tname=convert(varchar,c.value) from
(select * from ::fn_listextendedproperty('MS_Description','user','dbo','table',default,default,default)) c
where tid=c.objname COLLATE Chinese_PRC_CI_AS;
不知道这是不是Sql Express2005的一个Bug,有遇到同样问题的朋友交流下。(select * from ::fn_listextendedproperty('MS_Description','user','dbo','table',default,default,default)) c
where tid=c.objname COLLATE Chinese_PRC_CI_AS;