Extended Stored proc

  • What is the difference between an extended stored proc and a stored proc?

    Why couldn't MS put the same logic of extended stored proc into a regular stored proc?

  • Extended stored procedures are written in C++, they do things that T-SQL can't do.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • GilaMonster (11/1/2013)


    Extended stored procedures are written in C++, they do things that T-SQL can't do.

    Gotcha! Thanks Gail!

    Is there a way to see the script of extended stored procs?

  • They don't have a script, they're not T-SQL. They're written in C++ and compiled into dlls which are shipped with SQL Server.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

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

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