Technical Article

Getting Information about Database Objects

,

It is sometimes necessary to have information regarding the database objects like stored procedures and triggers for e.g. we need to get information about a stored procedure like what paramters it has and so on.
The sp_help system stored procedure comes in handy.

What this store procedure does is that it returns result set. The result will be many times more than one in number for e.g If we need to get some information about user stored procedure it will return two resultsets. This result sets can then be captured in the front end using either ADO or my favourite ADo.net and used for the intended purpose.

Surprisingly the script is smaller than the Long description

It goes
for e.g. We nned to get information about the store procedure CustOrdersDetail in the northwind database.

sp_help 'northwind.dbo.CustOrdersDetail'

The first resultset will return details such as owner, created datetime the second result set will return detalis like parametername, type and so on.

Hallp Database Coding

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating