- I have a TSQL tsql__sp__A stored procedure that performs two functions:
(a) Creates a temporary table #tempTable that has SELECT data from a complex SELECT query.
(b) Calls the CLR stored procedure clr__sp__B for each row that performs calculations on the parameters of the row.
Question. Is it possible to access #tempTable from the clr__sp__B CLR procedure using the same connection context? (No, I do not want to move or create another #tempTable inside the managed procedure)
Thanks.
47d_
source
share