标签: sql oracle export-to-csv
如何以.txt格式从oracle db中提取数据&我需要将这些文件发布到sap服务器。
请指导我。
答案 0 :(得分:1)
您可以在sql / plus中使用spool,如下所示,它将写入result.txt
spool
result.txt
spool result.txt select col1, col2, ... , coln from your_table; spool off
有关详细信息,请参阅Here