Get List of Table Valued Function in SQL SERVER Using Query

 select o.name, p.*, t.name as type_name

from sys.parameters p

join sys.types t on t.user_type_id = p.system_type_id

join sys.objects o on o.object_id = p.object_id

where o.[type] in ('IF', 'TF') -- IF is inline, TF is multi-statement

Comments

Popular posts from this blog

Uploading Image to Sql Server Image Datatype in asp.net using fileupload Control

Get Running Sum of Query SQL Query