sp_databases 返回的 sqlserver 数据库备注是什么?

发布于 2024-08-10 18:26:52 字数 60 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酷到爆炸 2024-08-17 18:26:52

该字段始终返回 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

左岸枫 2024-08-17 18:26:52

只需运行 sp_helptext sp_databases,您就会看到:

REMARKS   = convert(varchar(254),null)

这是一个全新的 NULL,为您的方便而及时制造。

Simply run sp_helptext sp_databases and you'll see:

REMARKS   = convert(varchar(254),null)

It's a brand new NULL, manufactured just in time, for your convenience.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文