StumbleUpon
Share on Facebook

Tuesday, May 31, 2011

How to get the list of Functions in Database

How to Filter Functions from Sys.Objects

The following query will list of the Functions that are part of the database:

SELECT * FROM

sys.objects

where type in ('FN', 'IF', 'TF')

No comments:

Related Posts Plugin for WordPress, Blogger...