sql server 2000系统表sysproperties在SQL 2008中无效的问题
来源:未知 责任编辑:智问网络 发表时间:2013-11-12 17:21 点击:次
sql server 2000系统表sysproperties在SQL 2008中无效的问题
今天无意中在网上发现Sqlserver有一个扩展属性系统表sysproperties,因为只接触过MSSQL2005及以后的版本,在生产库2008版本及联机文档上搜了下都找不到这个系统表,后来发现这个系统表在2005版本后就被另一个系统表sys.extended_properites所代替。
www.2cto.com
查看表的扩展属性:
select object_id from sys.sysobjects where name = table_name;
select * from sys.extended_properites where major_id = object_id;
扩展属性中有一name值是MS_Description,这个值是查看备注信息的。
select * from sys.extended_properites where major_id = object_id and name = 'MS_Description';
作者 kenyon
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>