Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL output to flat file

Status
Not open for further replies.

Tison

Programmer
May 12, 1999
216
CH
Does anyone know how I can write SQL output to a flat file from within SQL Advantage ?<br>
eg select * from Table &gt; "C:/table.rpt"<br>

 
Using SQL Anywhere's ISQL, you can enter the following command:<br>
<br>
select * from Table; output to 'C:\table.rpt'<br>
<br>
I don't know why that wouldn't work within SQL Advantage.<br>
<br>
Good Luck!<br>
<br>
Pat Gleason
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top