November 1, 2013 at 11:32 am
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?
November 1, 2013 at 11:34 am
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
November 1, 2013 at 11:54 am
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?
November 1, 2013 at 12:55 pm
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
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply