Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Extended Stored Procedure in MS SQL Server

I know about Stored Procedure in MS SQL Server. But I dont have a clear idea about Extended Stored Procedure in MS SQL Server. What is it? Explain it with a simple example. Thank you.

like image 437
thevan Avatar asked Jan 05 '11 11:01

thevan


2 Answers

Extended stored procedures are stored procedures that call functions from DLL files. You can read the article How to use extended stored procedures to learn more.

However, extended stored procedures are deprecated and you should avoid using them if possible. CLR Integration should be used instead.

like image 152
Marek Grzenkowicz Avatar answered Jan 04 '23 09:01

Marek Grzenkowicz


They reside inside the master database, you can use the command "sp_helpextendedproc", in respective database.

See below screen shot:

enter image description here

like image 30
Manish Sharma Avatar answered Jan 04 '23 10:01

Manish Sharma