system stored procedure

  • Does anyone know what this system SP does:

    sp_MS_marksystemobject

    How do you use it?

    Thanks

  • This was removed by the editor as SPAM

  • Try this and you'll get an answer for start:

    select text

    from sysobjects t1

    left join syscomments t2 on t1.id = t2.id

    where t1.name = 'sp_MS_marksystemobject'

    PS: I don't know more about this SP, but for start that upper select statement should give you a starting point.


    🙂

  • This was not helpful. This result is below:

    ===========================================

    -- FOR INTERNAL USE ONLY ... DO NOT DOCUMENT --

    -- This procedure sets a bit in sysobjects. This bit has no meaning, various

    --groups (starfigther, davinci, replication) use it for different things

    -- MSQL makes no warranty, express or implied, on wha

    Thanks for your help anyway.

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

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