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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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 ArticleBy: 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