Possible Duplicate:
Invoking CLR stored procedures
Does anybody know how to call a CLR stored procedure using select statement?
Possible Duplicate:
Invoking CLR stored procedures
Does anybody know how to call a CLR stored procedure using select statement?
As far as I know it's not possible without OPENQUERY
or OPENROWSET
, you'd better use CLR table function.
If you need to insert data from stored procedure
insert into Table
exec <your CLR procedure>