Answer Posted / swaroop
An extended stored procedure is simply a procedure that is
implemented in a dynamic link library (DLL) ? a library
that is called by an application at runtime. Extended
stored procedures can be used in much the same way as
database stored procedures, except that extended stored
procedures normally perform tasks related to the
interaction of SQL Server with its operating environment.
Tasks that are either too complicated or just not possible
using Transact-SQL can often be performed with extended
stored procedures.
Extended stored procedures are written using the Open Data
Services (ODS) API. ODS is written and supported by
Microsoft and is available on the Workstation version of
SQL Server and as a separate product (and in the Back-
Office Development Kit). The ODS development package
includes both a static-link library (Opends60.lib) and C
header files that let you create fully functional database
services. ODS applications are dynamically linked with
Opends60.dll.
They are only available in master DB.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is it possible to update the views? If yes, how, if not, why?
What is indexing in sql server with example?
What are different types of statement?
What is store procedure?
Explain cross join or cartesian product in sql?
What kind of problems occurs if we do not implement proper locking strategy?
Why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it?
How to use go command in "sqlcmd"?
What is merge join?
What is star, snowflake and star flake schema? : sql server analysis services, ssas
How do I start sql server 2016?
What is precedence constraint?
How can you hide the sql server instances?
What is the purpose of the tempdb database?
Why should you use or avoid select * statements?