Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Oracle SQL Developer 3.0. Trying to figure out how to export a query result to a text file (preferably CSV). Right clicking on the query results window doesn't give me any export options.

share|improve this question

4 Answers

up vote 55 down vote accepted

Version I am using

alt text

Update 5th May 2012

Jeff Smith has blogged showing, what I believe is the superior method to get CSV output from SQL Developer. Jeff's method is shown as Method 1 below:

Method 1

Add the comment /*csv*/ to your SQL query and run the query as a script (using F5 or the 2nd execution button on the worksheet toolbar)

enter image description here

That's it.

Method 2

Run a query

alt text

Right click and select unload.

Update. In Sql Developer Version 3.0.04 unload has been changed to export Thanks to Janis Peisenieks for pointing this out

alt text

Revised screen shot for SQL Developer Version 3.0.04

enter image description here

From the format drop down select CSV

alt text

And follow the rest of the on screen instructions.

share|improve this answer
11  
+1. The term "Unload" seems anti-intuitive to me. To "Load" some data means to insert it into the database; therefore "Unload" should mean the data is deleted... – Jeffrey Kemp Nov 13 '10 at 7:22
Totally agree Jeffrey – Ian Carpenter Nov 13 '10 at 20:50
Couldn't agree more, what awful UI design. I spent a good 10 minutes just then scatching my head trying to work out where the hell it went (in previous versions of SQL Developer, an 'Export' option was in that menu) – djhworld Apr 13 '11 at 14:47
2  
In version 3.0.04 this option has been renamed to Export. – Janis Peisenieks Aug 18 '11 at 7:34
@Janis - Thanks I have revised my answer – Ian Carpenter Aug 18 '11 at 20:41
show 3 more comments

Not exactly "exporting," but you can select the rows (or Ctrl-A to select all of them) in the grid you'd like to export, and then copy with Ctrl-C.

The default is tab-delimited. You can paste that into Excel or some other editor and manipulate the delimiters all you like.

Also, if you use Ctrl-Shift-C instead of Ctrl-C, you'll also copy the column headers.

share|improve this answer
awesome, i was looking specifically on how to copy headers. thanks! – mishkin Jun 27 '12 at 20:09
Perfect! Saved me a lot of time! – IcedDante Sep 24 '12 at 1:04
The only issue, if you have a lot of rows, this will mean it will have to query the entire dataset again. and if it's a long running query, this means you wait a lot for the first page, and then wait a lot for all pages after pressing ctrl+A. in other words, great solution, but works only most of the time, and for relatively faster or smaller queries. – Eran Medan Nov 9 '12 at 18:50

FYI, you can substitute the /*csv*/ for other formats as well including /*xml*/ and /*html*/. select /*xml*/ * from emp would return an xml document with the query results for example. I came across this article while looking for an easy way to return xml from a query.

share|improve this answer

FYI to anyone who runs into problems, there is a bug in CSV timestamp export that I just spent a few hours working around. Some fields I needed to export were of type timestamp. It appears the CSV export option even in the current version (3.0.04 as of this posting) fails to put the grouping symbols around timestamps. Very frustrating since spaces in the timestamps broke my import. The best workaround I found was to write my query with a TO_CHAR() on all my timestamps, which yields the correct output, albeit with a little more work. I hope this saves someone some time or gets Oracle on the ball with their next release.

share|improve this answer
My version 3.0.04 still has a bug where it just hangs with larger exports (mine is 3K rows). My simple fix was to use SQLPLUS instead: – Jim P Jan 10 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.