Can you explain how to convert oracle table data into excel sheet?
There are 2 ways to do so:
1. Simply use the migration wizard shipped with Oracle.
2. Convert Excel sheet into CSV file. Create an oracle table, and use SQLLoad to load the CSV file into the oracle table.
E.g.:
load data
infile MySheet.csv
replace
into table mytable
fields terminated by ','
(name,age,salary)