Pass MultiQuery to MSSQL-PLUS

I want to minimize my code :
I have function has two query and I want to pass this two query to one MSSQL-plus and get 2 output
from MSSQL-plus

You risk complicating your code by performing 2 queries in 1.

Are the queries related? Can you not simply return 2 rows based on a single query?

Alternatively, create a stored procedure that returns what you need?

Lastly, if you MUST, then add your 2 queries and set the Output Type to "driver" mode and see what you get in a debug node set to Show Complete Message

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.