Hi there,
I have a stored function in my DB which returns a ref cursor.
I want to use the result as my metadata in my Framework Manager model.
How can I do that?
Thanks!
You should be able to use it, just call it via SQL in your select statement.
For example:
Select *, dbo.YourFunction(parameter) as FunctionResults
from TableA