By: carzmetic
nice work, 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...
View ArticleBy: Mike Chambers
I found my problem. I formatted the cell for Text using as_xlsx.get_numFmt(‘@’). What I didn’t know was that formulas entered into fields formatted as Text are just that…TEXT. By changing to...
View ArticleBy: tony miller
I am trying to use this package with a slight twist.. Since you have an existing plugin that will allow download of a report via Excel 2007 format file, but it can only handle reports up to 26 columns,...
View ArticleBy: Chuck Wolf
Anton Is their a whitepaper on how to implement this from both Apex, where I am just opening a .xlsx file and from a stored Proc where I am emailing the xlsx file and passing in the SQL statement on...
View ArticleBy: tony miller
I have been working with Anton to have a modified version of this build a xlsx file and allow the user to download/save it locally..
View ArticleBy: Chuck Wolf
My business requirement is to transition from sending .xls files (we are currently using xml Spreadsheet by Matzberger) to .xlsx files. Would love to use this, as it seems to be widely regarded, but...
View ArticleBy: Anton Scheffer
No, I don’t have a whitepaper. But using the function finish you will get a blob. You can store that blob in a table, use it as an attachment for a email, throw it away, what ever you want.
View ArticleBy: tony miller
Anton is right, once the procedure runs and builds the Finish blob item, you can do what you want with it. In my case I am downloading it via a wpg_docload.download_file call to the user for either a...
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: Ralph Bieber
Hi Anton, first let me thank you for this great package. Please note that I had an issue getting ORA-6502. I got this error when appliying “Auto Filter” in procedure “finish”. I debugged the procedure...
View ArticleBy: Bill
Hello, Thank you for this source code. it works great and is close to what we are looking for in our system. However, we support clients with previous versions of Excel (mainly 97-03 and above) but not...
View ArticleBy: Bill
That is what I was afraid of. Thank you for the quick reply and again for the code.
View ArticleBy: Robertson
Your package is great , Really it helps me lot. I have problem , if am writing more than 10k rows and it is taking for ever. is there any limit to write, please help me Thanks
View Article