views:

62

answers:

2

The sp_databases stored proc in sqlserver returns a remarks column. Where does this information come from, and can I edit it?

+2  A: 

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%28SQL.80%29.aspx

Irwin M. Fletcher
+2  A: 

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.

Remus Rusanu