Pages

Wednesday, August 14, 2013

SQL SERVER – Find All The User Defined Functions (UDF) – Part 2 | Journey to SQL Authority with Pinal Dave

Few days ago, I wrote about SQL SERVER - Find All The User Defined Functions (UDF) in a Database. Regular reader of this blog Madhivanan has suggested following alternate method to do the same task of finding all the user defined functions in database. USE AdventureWorks GO SELECT specific_name,specific_schema FROM information_schema.routines WHERE routine_type='function' GO Reference… Continue Reading...

Source: SQL SERVER – Find All The User Defined Functions (UDF) – Part 2 | Journey to SQL Authority with Pinal Dave

No comments:

Post a Comment