在sqlplus
直接将表存为文本文件
spool c:\tbdata.txt
set heading off
set feedback off
select * from tbname;
spool off;

解决方案 »

  1.   

    用pl/sql develop就可以,查询出结果,选中后按右键
      

  2.   

    toad也可以,5千万可能时间很长!
      

  3.   

    用spool把输出定向到文件就行了阿。
      

  4.   

    不是吧,你有多大内存能存储5千万条数据呀。我是说与没有类似与BCP的程序
      

  5.   

    其实像你这样大容量数据量,最好使用第三方工具
    也不一定导成.txt,
    用pl/sql developer导成.sql,全部脚本可以查看