How to find all User Defined Funtions From a Database
The following code shows how to find all User Defined Funtions From a Database
SELECT specific_name,specific_schema
FROM information_schema.routines
WHERE routine_type='function'
GO
The following code shows how to find all User Defined Funtions From a Database
SELECT specific_name,specific_schema
FROM information_schema.routines
WHERE routine_type='function'
GO
Hello
Nice piece of code
Thanks for sharing your knowledge with us.
I hope to see more good code from your side
This code is going to help lots of guys.
Ton Thanks to you
Regards,
Kapil