I got some records from Oracle SQL developer & in the output query result. I want to copy the data & paste into the Excel sheet. How to copy the records from output of oracle SQL developer to Excel sheet.
-
1simple google would give you what you need. stackoverflow.com/questions/4168398/…arunb2w– arunb2w2017-12-14 07:28:12 +00:00Commented Dec 14, 2017 at 7:28
-
Please see the tour as well as How to Ask and minimal reproducible example.ashleedawg– ashleedawg2017-12-14 07:29:27 +00:00Commented Dec 14, 2017 at 7:29
Add a comment
|
4 Answers
It's simple, select all the records from the output query result and copied it by using Ctrl+C then after open new DataBase File on top left side of the Oracle SQL developer. Then after paste all the data there into that DataBase File. Again copied the data from that DataBase files using Ctrl+C & paste it into the Excel Sheet.
1 Comment
Chuck0185
When I do this, if I have fields with value of NULL instead of leaving a blank cell it just skips a cell. So for instance if field1 is 'Oracle', field2 in NULL, and field3 is 500. When I paste into excel instead of A1 'Oracle', B1 Blank, C1 500, I get A1 'Oracle', B1 500. How do Ii get Excel to recognize a Null value as a blank cell?
