Getting the result columns of table valued functions in SQL Server 2008 R2
问题 For a constants generator I like to get the meta data of result columns for all my table valued functions (what are the names of the columns returned by each table valued function). How can I get them? Do I have to parse the function's source code or is there an interface providing this information? Thanks for your help Chris The following query I use to get the TVFs: SELECT udf.name AS Name, SCHEMA_NAME(udf.schema_id) AS [Schema] FROM master.sys.databases AS dtb, sys.all_objects AS udf WHERE