调用CLR存储过程

时间:2012-10-18 11:54:49

标签: c# sql-server stored-procedures sqlclr

  

可能重复:
  Invoking CLR stored procedures

有人知道如何使用select语句调用CLR存储过程吗?

1 个答案:

答案 0 :(得分:3)

据我所知,没有OPENQUERYOPENROWSET是不可能的,你最好使用CLR表函数。 如果需要从存储过程中插入数据

insert into Table
exec <your CLR procedure>