--查询存储过程代码
EXEC sp_helptext P_Business_OrderPool
--查询数据库下所有下列内容
select name from sysobjects where xtype='TR' --所有触发器
select name from sysobjects where xtype='P' --所有存储过程
select name from sysobjects where xtype='V' --所有视图
select name from sysobjects where xtype='U' --所有表
select name from sysobjects where xtype='TF' --所有表函数
select name from sysobjects where xtype='FN' --所有标量函数
--为表中的字段添加描述信息
EXECUTE sp_addextendedproperty N'MS_Description', '描述信息',
N'user', N'数据库用户默认dbo',
N'table', N'表名',
N'column', N'列名'