Create an Excel Spreadsheet from a Oracle Database

后端 未结 5 662
北海茫月
北海茫月 2020-11-29 10:12

I have a table in a Oracle database. I have to create a complex spreadsheet structure from the Oracle table. I am looking for best approach to achieve this. Can I use SSIS o

5条回答
  •  盖世英雄少女心
    2020-11-29 10:28

    The first thing I would try is just dumping the values I wanted to CSV. Excel should be able to import that just fine, and it's often easier to fiddle with Excel formulas, etc., manually than to try to automate it. If you're using Oracle SQLDeveloper, there's an option to export results to CSV. If you're using SQL*Plus, then you can use set colsep , to make Oracle use commas to separate the columns. You'll probably want to do some more formatting tweaks if you're using SQL*Plus, though.

提交回复
热议问题