I can count total user created functions in SQL Server using
SELECT COUNT(*)
FROM information_schema.routines
WHERE routine_type = 'FUNCTION'
But this returns all functions whether it be a scalar-valued function, an inline function or a table-valued function
Is there a way to obtain a count specific to the type of function? E.g. count inline functions only?
and DATA_TYPE = 'TABLE'will get you part way there.