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

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 Article


By: 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 Article


By: 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 Article

By: 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 Article

By: Anton Scheffer

No

View Article


By: Chuck Wolf

So is it meant to only save to the network?

View Article

By: 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 Article

By: 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 Article


By: 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 Article


By: 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 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: 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 Article

By: 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 Article


By: Anton Scheffer

You can’t create xls files with this package.

View Article

By: Bill

That is what I was afraid of. Thank you for the quick reply and again for the code.

View Article

By: 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
Browsing all 73 articles
Browse latest View live