tags:

views:

43

answers:

2

how to generate report and save it to file using pl/sql oracle?

+3  A: 

From your post it's unclear what report and from what data sources you want to generate. Concerning writing to a file from PL/SQL utl_file package can help, but bear in mind that file will be written to a server directory.

andr
+1  A: 

DBMS_OUTPUT can be used to generate shorter reports (there is a maximum size that the generated output can be) that can be saved on the client side.

DCookie