Forum Replies Created

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

  • RE: system stored procecures

    vk-kirov (8/24/2011)


    Hafiz Muhammad Suleman (8/24/2011)


    no use and still it executes our db sp when execute sp_one

    Database context should be changed to 'master' before executing the sp_ms_marksystemobject procedure:

    USE master

    GO

    EXEC sys.sp_ms_marksystemobject 'sp_one'

    GO

    USE...

  • RE: system stored procecures

    vk-kirov (8/24/2011)


    michael.kaufmann (8/23/2011)


    Hafiz Muhammad Suleman (8/23/2011)


    one question : how can we create a system procedure in master by ourselves ?

    I may be wrong, but as far as I know, you...

  • RE: system stored procecures

    Christian Buettner-167247 (8/23/2011)


    elbedata (8/23/2011)


    It returns "that" when I test on SQL Server 2008, but I thought it should return "this"...

    Has this changed in later SQL versions? I am pretty sure...

  • RE: system stored procecures

    MS documentation is wrong as i tried and it exectue test2 DB sp instead of master db sp , but micrsoft says that it should first search in master db...

  • RE: system stored procecures

    Important If any user-created stored procedure has the same name as a system stored procedure, the user-created stored procedure will never be executed. (from Microsoft)

    then how it executes test2...

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