Quantcast
Channel: Comments on: Create an Excel-file with PL/SQL
Browsing all 73 articles
Browse latest View live

By: Robertson

Hi Anton, While exporting 73220 rows, i am getting below error message. “ORA-04030: out of process memory when trying to allocate 16328 bytes (koh-kghu call ,pmucpcon: tds) ORA-04030: out of process...

View Article


By: Anton Scheffer

What kind of help do you expect? On my 11 XE database the package produces a 73220 rows, with 10 numerical columns, Excel file without a problem in 10 seconds. If I change it to use 2 string columns of...

View Article


By: tony miller

Anton, I would say people need to understand you provided a FREE package to be used and they take their OWN risks in using it.. Shesh, you went out of your way to provide the package and we are using...

View Article

By: mrbrightwork

Anton, Great work. Thank you for posting your tool. Your as_pdf3 tool uses dbms_lob.freetemporary when you do a save. Is there any reason to avoid freeing the blob when doing a save in as_xlsx? Thanks,...

View Article

By: Anton Scheffer

No reason, I thought that as soon the used blob went out of scope (i.e. after the call to finish) it is freed automatically.

View Article


Image may be NSFW.
Clik here to view.

By: Albain DSM

Works even better w/ autoflush utl_file.put_raw( file => t_fh , buffer => dbms_lob.substr( p_blob , t_len , i * t_len + 1 ) , autoflush => true );

View Article

By: Anton Scheffer

I must say I never had any problems without the autoflush = true. But you are right, it’s better. And if you have trouble writing out a file, it might even help to add max_linesize => 32767 to the...

View Article

By: Newbie

Hello Anton, I’ve been using your pl/sql package to create an excel file. It works great !!! I have two questions. How do I rename the sheets (ie. Sheet1) and how can I create a excel document with...

View Article


By: Anton Scheffer

@Newbie. Any reason why you renamed the package? Use the parameter p_sheet, for instance pwg_create_xlsx.query2sheet(‘select * from courses where course_numb = 24967′, p_sheet => 2 );

View Article


By: Newbie

Hello Anton, Thank you for the update. The package was renamed to match or naming standards. This is only for testing. How can I change the font on the entire sheet and how can I specify the column...

View Article

By: Bala

I ran below code, and it generated the file successfully. But I could not open the file, when I tried it throws an error message “Excel found unreable content in ‘my.xlsx’” begin as_xlsx.new_sheet(...

View Article

By: Anton Scheffer

That code works for me. And it will probably work for you too if you try it in a new session. If you start your code with as_xlsx.clear_workbook; you make sure that you start with a “clean” excel file.

View Article

By: Boydus

This is really good. Is there an alternative for doing the xls files?

View Article


By: Anton Scheffer

@Boydus. Not that I know of

View Article

By: Pinta

Hi Anton, Great Package… I wanted to have different font-size and Font-Color on the title – Few Merged Cells… I am able to do it it in XML … Just wanted to know if I could do somekind of HTML Format...

View Article


By: Pinta

<B>Title</B>'|| '<B>- SubTitle</B>')

View Article

By: Anton Scheffer

You could try as_xlsx.cell( 1, 2, ‘Title- SubTitle’, p_fontId => as_xlsx.get_font( ‘calibri’, 2, 15, p_bold =>true ) );

View Article


By: Pinta

Hi Anton, thanks for the Quick Response.. What Ment was –> Tiltle using ‘calibri’ 15, p_bold =>true SubTitle using ‘calibari’ 15, bold=>false both in the same cell I tried in 2 different cells...

View Article

By: Dheeraj

This package has been very helpful to me. In one of the reply below you had said “Build in a limit to restrict the package to generate max 5000 rows so people don’t allocate to much memory?” Could you...

View Article

By: Ramkumar

i hope someone can help me about the date system too, im using windows, i have an extracted excel and after copying its cell in date format into another excel file, the date becomes different. this is...

View Article
Browsing all 73 articles
Browse latest View live