Search by Stored Procedure size

  • Actually, Noel's code works fine with a little tweaking:

    select object_name(id) as ObjectName

         , sum(datalength(text)) as char_cnt

     from syscomments

    group by object_name(id)

    order by char_cnt desc

Viewing post 31 (of 30 total)

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