sp_databases 返回的 sqlserver 数据库备注是什么?
sqlserver 中的 sp_databases 存储过程返回备注列。这些信息从哪里来,我可以编辑它吗?
The sp_databases stored proc in sqlserver returns a remarks column. Where does this information come from, and can I edit it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该字段始终返回 null。您不能编辑它,除非您修改了不推荐的系统存储过程。
请参阅 http://msdn.microsoft.com/en-我们/库/aa259636(SQL.80).aspx
This field always retuns null. You can not edit it, unless you modify the system stored procedure which is not recommended.
See http://msdn.microsoft.com/en-us/library/aa259636(SQL.80).aspx
只需运行
sp_helptext sp_databases
,您就会看到:这是一个全新的 NULL,为您的方便而及时制造。
Simply run
sp_helptext sp_databases
and you'll see:It's a brand new NULL, manufactured just in time, for your convenience.