UDFs? Where are they?

  • Where are UDF's stored?! Not in sysobjects, but where? To be clear, where are they in SQL2005 and SQL2000?

    Greetz,
    Hans Brouwer

  • SELECT TYPE,NAME FROM SYSOBJECTS WHERE TYPE = 'FN'

    IN YOUR QUERY ANALYZER EXECUTE THIS QUERY.

    I AM NOT FOLLOWING WHAT YOU MEAN BY NOT IN SYSOBJECTS.

     

     

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • In 2005 the definitions are stored in sys.sql_modules which you will need to join with sys.objects.

    In 2000 its sys.comments

     

    hth

     

    David

  • Tnx, I had found them already. Have to use my eyes better...

    Greetz,
    Hans Brouwer

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply