Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ORA_EXCEL

Status
Not open for further replies.

Kalyan Ganesan

Programmer
May 10, 2017
93
0
0
US
Can anyone tell me what all i need to create a procedure to export data to Excel...i tried using ORA_EXCEL but its giving me error

When i try something like this below

PROCEDURE'

BEGIN
ORA_EXCEL.new_document;
ORA_EXCEL.add_sheet('My Sheet');
ORA_EXCEL.add_row;
ORA_EXCEL.set_cell_value('A', 'Hello World!');
ORA_EXCEL.save_to_file('C:\EXPORT_DIR', 'example.xlsx');
END;


i get an error in the very first line ORA_EXCEL.new_document;

 
You can execute the following query:
[tt]
SELECT * FROM dba_source WHERE UPPER(name) = 'ORA_EXCEL';[/tt]
or[tt]
SELECT * FROM dba_source WHERE UPPER(text) LIKE '%ORA_EXCEL%';
[/tt]
If it returns any rows, then you have ORA_EXCEL installed in a schema from the "OWNER" column.


Have fun.

---- Andy

There is a great need for a sarcasm font.
 
Yea i ran the queries it didnt return any row..so i understand i need to install it..so its a paid product isnt it?
 
Yes, pricing is here

Have fun.

---- Andy

There is a great need for a sarcasm font.
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top