How to call a .net dll method from sql server 2000 stored procdure

  • Thread starter Thread starter Sara
  • Start date Start date
Sare,

I think that you have for this SQL language related question much more
change in a SQLServer programmer related newsgroup.

Just my idea

Cor
 
Hi,

I do not believe it is possible with sql server 2000 but I believe
you might be able to with sql server 2005.

Ken
 
well it depends on what you want


SQL 2000 can call a VS.Net assembly through notification services ( seperate
install it is a sort of callback ) SQL 2005 has this standard onboard
however if you mean calling a .Net dll like a extended stored procedure in
SQL 2000 they must be written in C++ in sql 2005 you can write them in .Net
code


regards

Michel Posseth
 
| How to call a .net dll method from sql server 2000 stored procdure

you can compile it for use as a com dll. once this is done, you can create
the object in sql server and use its functionality. to do that, either
google or post to a sql server ng. using com components in sql server is
pretty straight-forward.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top