Five year PL/SQL programmer with a MSSQL question. I need to spool (the PL/SQL verb) output to a file from an MSSQL statement.
In PL/SQL it would look like:
spool myoutput.txt
select table_name from all_tables
spool off
How do I do this in MSSQL?
Thanks,
Eric
In PL/SQL it would look like:
spool myoutput.txt
select table_name from all_tables
spool off
How do I do this in MSSQL?
Thanks,
Eric
Comment