sp_sproc_columns

  • Trying to return sproc metadata (only input paramaters) by using sp_sproc_columns. So I tried modifying it by adding WHERE COLUMN_TYPE = 1, but when I tried running the query, I got the following error message;

    Msg 208, Level 16, State 1, Line 205

    Invalid object name 'sys.spt_sproc_columns_odbc_view'.

    Also, I am logging into SSMS 05 with Windows account. I have tried miserably to configure my SA account but nothing seems to work. Please help!

  • If you're making your own version of the proc with custom mods, try marking it as a system procedure:

    EXEC sp_ms_marksystemobject 'your proc name'

    -Eddie

    Eddie Wuerch
    MCM: SQL

Viewing 2 posts - 1 through 1 (of 1 total)

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