SqlServer20052008下sysproperties无效的解决办法

SqlServer20052008下sysproperties无效的解决办法,第1张

概述SqlServer2005/2008下sysproperties无效的解决办法 if exists (select 1 from sysobjects where name = 'sysproperties'and xtype = 'v') begin     drop view sysproperties end     go     create view sysproperties    

sqlServer2005/2008下syspropertIEs无效的解决办法


if exists (select 1 from sysobjects where name = 'syspropertIEs'and xtype = 'v')

begin     drop vIEw syspropertIEs end     go     create vIEw syspropertIEs     as     select a.name as tablename,    a.ID as tableID,b.name as colname,b.colID as colID,    b.xtype as coltype,c.name as propname,c.value as propvalue     from sysobjects as a inner join syscolumns as b on a.ID = b.ID     inner join sys.extended_propertIEs as c on c.major_ID = a.ID      and ( minor_ID = b.colID) 总结

以上是内存溢出为你收集整理的SqlServer2005/2008下sysproperties无效的解决办法全部内容,希望文章能够帮你解决SqlServer2005/2008下sysproperties无效的解决办法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1171241.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存