Search results
14 wrz 2009 · We now have to create a pdf file. I was planning on using pdfsharp/migradoc to do it, but then we'd have to create document and time its readiness with sql server data state and mail state. It'd be nice if the db could handle everything.
2 cze 2021 · Using the new SQL scalar function GENERATE_PDF to create PDF in the IFS from spool files
29 mar 2005 · When I export a report to pdf I sometimes get the error 'There was an error opening the document. The file is damaged and could not be repaired.'
16 kwi 2018 · The first step is converting the PDF into a format that is more easily processed with SQL and PL/SQL. To that end, Oracle Text includes functionality to parse a PDF BLOB into an XHTML CLOB. With a BLOB containing a PDF with contents that look like this:
11 kwi 2012 · WPG_DOCLOAD.DOWNLOAD_FILE(g_pdf_doc); After calling wpg_docload.downloadfile, I check V$TEMPORARY_LOBS and I see that the cache_lobs column is increasing in number – that is, the session is generating this temp lob is not being released. I only have this issue when I call wpg_docload.downloadfile().
2 mar 2023 · Problem happens when trying to save some illustrator files as a PDF from the Ai version of the file. Problem also happens when trying to just save the Ai file and I have the "Create PDF Compatible file" checked. File saves ok when box is unchecked...
set @filePath = 'c:'\pdfSample.pdf'. set @filePath = 'c:\\pdfSample.pdf'. But the following syntax works. INSERT INTO pdfTest (pdfData) SELECT * FROM OPENROWSET(BULK 'c:\pdfSample.pdf', SINGLE_BLOB) AS BLOB.