用SQL语句不会,不如你在TOAD或PB,或DEVELOP里打开,想怎么导怎么导了

解决方案 »

  1.   

    不用别的工具,用PL/SQL或者在OEM界面中。
    是将表的数据,导到txt文本中,spool open什么意思?
      

  2.   

    pl/sql developer
    或者
    sql*plus中用脚本导出:
    set heading off feedback off echo off termout off
    spool c:\text.txt
    select f1||','||f2||','||f3... from t;
    spool off;
      

  3.   

    spool 文件名   把这之后的各种操作及执行结果“假脱机”即存盘到磁盘文件上,默认文件扩展名为.lst
    spool      显示当前的“假脱机”状态
    spool off    停止输出