sql - TSQL: Call a stored procedure from another stored procedure and read the result -


I have a stored procedure that ends with a SELECT, a record set I give it in some way In the stored procedure, I can call:

  EXEC process @ ultimate  

How to obtain returning recordset? Thank you

You can create a temporary table and then INSERT #MyTable EXEC process @ You can use .

There are some others.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -