SPOOL command doesnt save result in query

后端 未结 2 1200
情话喂你
情话喂你 2020-12-21 12:41

I\'m using SQL Developer and I\'m trying to save result of a query into the text file using spool command.

spool D:\\file.txt
SELECT * FROM TABLE
SPOOL OFF
<         


        
2条回答
  •  抹茶落季
    2020-12-21 12:52

    It looks to me that you're not executing the query, just entering it into the command buffer. You need to add a semicolon or a slash to actually execute it.

提交回复
热议问题