Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Filtering list of stored procedures

    Try this from sysobjects ( another alternative )-

    SELECT *

     FROM sysobjects

     WHERE xtype = 'p'

       AND category != 2

     ORDER BY name

    ~~~~~~~~~~~~
    Sailesh Mishra

Viewing post 1 (of 2 total)