Mar 3, 2009 #1 ejaggers Programmer Feb 26, 2005 148 US Is there a way to concatenate multiple SQL's into one file? i.e.: unload to fname select * from table1; unload to fname select * from table2; unload to fname select * from table3;
Is there a way to concatenate multiple SQL's into one file? i.e.: unload to fname select * from table1; unload to fname select * from table2; unload to fname select * from table3;
Mar 3, 2009 1 #2 PHV MIS Nov 8, 2002 53,708 FR unload to fname select * from table1 union all select * from table2 union all select * from table3; Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
unload to fname select * from table1 union all select * from table2 union all select * from table3; Hope This Helps, PH. FAQ219-2884 FAQ181-2886