Want to use securefile feature to store .pdf files at OS Level

Can Data Guard copy the pdf to the file system of a standby database?
I think not, but have no idea.
Thanks

Hi,
DataGuard cannot, but you can do this with ACFS (Oracle Cloud Filesystem) Replication in addition to DataGuard, to keep file (BFiles) and the database in Sync.
Alternatively you could put the pdf into DBFS (Database Filesystem), so that the file would be saved inside the DB, hence replication via. the normal DG mechanism.
www.oracle.com/goto/asm
Regards
Sebastian

Similar Messages

  • Store PDF File in Oracle database 10g

    Hi all,
    I want to store PDF File in Oracle database 10g,
    and then I want to access the pdf file using Oracle Developer 6i
    can anyone tell me how to do this,
    thanks in advance.

    This question has already been posted a lot of times.....
    See the following:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=pdf+file&objID=f82&dateRange=lastyear&userID=&numResults=15
    Greetings,
    Sim

  • How to store PDF files in a table

    Hi,
    Is there a way to store PDF files in a table? Do I use LOB? How do I automatically read them if I want them to be available in a web site?
    Thanks.
    Camille

    U have to use either BLOBs (internal LOBs) or BFILEs (external LOBs). check out docu. at http://www.akadia.com/services/ora_blob.html

  • HT5663 How to store PDF files in iCloud?

    Is there a way to store PDF files in iCloud? I see that Preview supposedly stores PDF's in iCloud, but when I try it, I cannot find the file in iCloud.

    Sorry AMCarter3, my bad.  While it used to be in GoodReader they apparently removed it some time ago, supposedly for some legal reasons?
    I too use GoodReader primarily with dropbox and box so had not noticed it was gone.
    As an aside, for those apps that support iCloud storage, if you have a Mac, enable Documents & Data in the iCloud control panel.  That will make a folder on your hard drive, named "Mobile Documents" that is your local mirror of your iCloud folders.  Apps that sync their content to iCloud will make a folder for themselves when they first conntect to iCloud, and that folder will in turn get created as a sub-folder in Mobile Documents on your Mac (I still have my one for Goodreader, "JFJWWP64QD~com~goodiware~GoodReader", along with ones for Pages, Numbers, and a host of others). 
    You can then drag and drop any file you wish into that folder (as long as it is a file type supported by the app), and they will then sync to iCloud.  You then use the app and download them for use on your iOS device from within the app.  That folder on your Mac will be updated whenever it changes and your Mac has internet access to iCloud.
    But, for PDFs in Goodreader, yes, dropbox works great, and has their free companion app for OS X if you want things on your computer to sync automatically too.

  • Using pages how to insert pdf files on ipad?

    using pages how to insert pdf files on ipad?    
    Anybody have any idea, have pdf files in ibook do not see where to insert pdf's.
    Also trying to get word files onto ipad using drop box, do these word files need to be saved in another format?
    Also for pages.
    thnx

    No - the Word files do not need to be saved in any other format if you have Pages on your iPad. There are other apps that provide better compatibility than Pages but it will work for you. You have to have DropBox on your PC and the free DropBox app on the iPad to use DropBox to transfer files.
    To send the file using DropBox -  make sure DropBox is running on your computer. Then place the file in one of the folders that you have set in your DropBox folder on your PC. Launch DropBox on your iPad and find the folder that you placed the file into and tap on that folder. Find the document and tap on it. It will open in the window on the right. Tap the arrow icon in the upper right corner and select Open in Pages.
    If you have pdf files in iBooks that you want to put into Pages you have to email them to yourself and use the Open In feature when you open the email. You cannot send a file from iBooks other than to email it - at least I am not aware of any other way.

  • Any tricks to store pdf file generated via jasper to oracle tables.

    i need to generate pdf file ..for records in a cursor..
    So i use jasper integration kit ... to accomplish the same...
    issue is .. i need to press a button and then pdfs file shoudl be generated...and stored in a table as a blob..My process does this..
    But since the process can be fired only on condition. on load before header...
    The result is i get my pdf file generated and stored in table ..but the page is a blank page..seems like it is some jasper page..
    http://127.0.0.1:82/apex/f?p=132:267:3324851978466855::::: The page looks empty...I will not want it to look empty...
    i will like after pressing a button immediatley it shows a page processing and when processing is done... it shifts to other page...
    I am putting the part of code which generates the pdf file ...any guidance or help shall be appreciated..
    So i hope you understood the issue..*Issue is when button is pressed i see a blank page..THough the below process is fired pdf file genrated and stored in oracle tables..as blob.. I will like instead of blank page it displays me some othe page..say like processing and once done it shoudl say processing complete..*
    Any guidance will be kindly appreciated..
    Thanks paul johny
    Below you will see the stored procedure i use..to generate the pdf files...
    create or replace procedure lordslave is
    cursor c1 is select subscribe_no from subscribers
    where subscribe_no > 296;
    l_blob BLOB;
    l_mime_type VARCHAR2 (100);
    begin
    for xxx in c1
    loop
    begin
    --xlog ('PRC_GET_REPORT_TUNNEL', 'url (orig):' || 'http://localhost:84/JasperReportsIntegration/report?_repName=test_repFormat=pdf_dataSource=def1_outFilename=tes.txt_repLocale=de_DE,repEncoding=UTF-8');
    xlib_jasperreports.set_report_url ('http://192.168.1.3:84/JasperReportsIntegration/report');
    xlib_jasperreports.get_report
    (p_rep_name => 'subinvx',
    p_rep_format => 'pdf',
    p_data_source => 'default',
    p_rep_locale => 'de_DE',
    p_rep_encoding => 'UTF-8',
    p_additional_params => 'Psubscribe_no='||390,
    p_out_blob => l_blob,
    p_out_mime_type => l_mime_type
    BLOB_LOADB (mid(),xxx.subscribe_no,'SUBSCRIBERINVOICE','mfilename',l_mime_type,l_blob);
    -- release resources
    DBMS_LOB.freetemporary (l_blob);
    -- stop rendering of APEX page
    apex_application.g_unrecoverable_error := TRUE;
    EXCEPTION
    WHEN OTHERS
    THEN
    xlog ('PRC_GET_REPORT_TUNNEL', SQLERRM, 'ERROR');
    RAISE;
    END;
    end loop;
    end;

    All you need to do - is that you should use the column data type as Long Raw.Why would you recommend using LONG RAW which has been deprecated in favour of BLOB for years?
    You can find a simple example of inserting a file into a BLOB column using JDBC here. The Oracle JDBC docs are also worth a read. Find out more.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • HT4847 how to store pdf files on iCloud ?

    how to store pdf files on iCloud ?

    Hi SirNicksolot
    After move the pdf to iCloud, how do I retrieve it from my iPad or other Mac computer after using Preview to move pdf file to iCloud?

  • Want to allow designated clients to upload pdf files to a designated page on my cs4 website

    want to allow designated clients to upload pdf files to a designated page on my cs4 website. want those files to be live on that page when their upload is complete. this is so I dont have to receive their file and upload it myself.
    appreaciate the help.

    Everything you have described can be done using PHP (assuming your website is on an apache server). There are three separate "sub-projects" to your overall project:
    1. Log-in system. Secrity is an issue here. There are several ways to accomplish this.
    2. File upload routine.
    3. Display of directory contents in a dynamic webpage.
    Fortunately, each of these tasks is explained in the book PHP Solutions, by David Powers. It even presents several different methods for handling the log-in password routine and security. Since your project doesn't require a database, you will want to choose a password storage method that doesn't require one.
    The way I would handle this is to create a directory for each client. Maybe the directory name will be the client's ID, like 27, 28, etc. Then the upload routine will use a varible based on the client id, so it will put the right client's files in the right directory.
    Overall, this is not a very difficult project, especially if you get the Power's book and read through the appropriate chapters.

  • Store Pdf file

    Hi,
    Oracle Form 6i,
    Oracle Database 11g.
    Is there any way to store pdf file from user client machine without transfer the file to OS of database?
    Regards,

    In Forms 6i you can create an item of type OLE Container to store a PDF file.
    However, I do not recommend this. You will never be able to retrieve the document in any other way than via Forms again. You cannot simply get the value of the BLOB column and store it somewhere as a PDF file. When using an OLE item, Forms "serializes" the data (whatever that means ) before storing it in the database. Also, OLE is obsolete in later versions of Forms.
    >without transfer the file to OS of database
    You don't have to transfer to the database server per se. Any file server will do, as long as the database has access to the directory (via CREATE DIRECTORY). This would be my preferred way to do it.

  • Does Reader for iPad store PDF files for viewing later when offline?

    Does Reader for iPad store PDF files for viewing later when offline?
    I'm asking because I have my portfolio as a PDF and I want to take my iPad with me to interviews, where I won't have Internet access, to show my portfolio.
    Cheers,
    Matt.

    Awesome, I had hoped adobe were on the ball with this, but it's worth finding out beforehand.
    Thanks!

  • Print to PDF - using Snow Leopard (Saving a PDF file when printing is not supported. Instead, choose

    i have a PDF form that i created that is used as a custom proposal that my company sends out to potential clients. the form in its editable state is only used internally. we recently upgraded to snow leopard, but prior to the upgrade, we were able to fill the custom proposal form out using adobe reader, and, as you well know, we weren't able to save that edited document as a PDF with the custom form fields filled out. our work around using adobe reader was to print to a pdf using the adobe pdf printer in the printer dialog. with the addition of snow leopard, however, instead of choosing the adobe pdf printer, we were to choose PDF from the bottom left corner, then Save As PDF, and it would spit out an uneditable pdf that then allowed us to email it to the potential client without them being able to edit it as well as have an internal, digital copy for our records instead of having lots of paper floating around (i know this is also doable using security that disallows the client certain editing privileges, but printing to a pdf is much quicker and more efficient, and the pdf security isn't really that secure at its best).
    in any case, i came across this gem of a post here on the support forums that installs another option from the PDF drop down on the bottom left of the print dialog menu that reads Save As Adobe PDF and is supposed to do exactly what i am trying to get it to do...print to a pdf file from adobe reader.
    http://kb2.adobe.com/cps/509/cpsid_50981.html    
    once i updated to acrobat 9.2 (as the link above suggests 9.1), however, the Save As Adobe PDF does appear in the print dialog menu, but it still gives me the same error that acrobat 8 - 9 gave me while using Snow Leopard — Saving a PDF file when printing is not supported. Instead, choose File > Save — and as i've already explained, you can't save an edited pdf form in reader (as i am the only one in the office with acrobat) and still keep the fields as you've entered them in. the only work around is to print to a pdf but is apparently having some recent problems.
    using acrobat, however, i know that i can save the editable pdf as a new file with the fields customized as i have left them, but it still saves it as an editable pdf and the print to a pdf option still remains the best option...that way we have digital copies internally that are uneditable that can be printed at any time or emailed to the client.
    how can i do print to a pdf, based on what i've written above, using snow leopard and acrobat and reader?

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • Adobe Acrobat XI pro version, Windows 7, running on iMac parallels, converting pdf to a pdf with reduced size is not possible, error: error in converting the file! What to do? Its a bit annoying not to be able to store pdf files in reduced size, any idea?

    Adobe Acrobat XI pro version, Windows 7, running on iMac parallels, converting pdf to a pdf with reduced size is not possible, error: error in converting the file! What to do? Its a bit annoying not to be able to store pdf files in reduced size, any idea?? Thanks, Jörg

    Hi Jorg ,
    Are you trying to reduce the file size with the "Reduced size PDF" in the save as other option.
    Give it a try if you haven't done it prior.
    Open that PDF>File>Save as Other>Reduced size PDF.
    If possible ,please share the snapshot of the error message with us so that we can have a look in order to assist you further.
    Regards
    Sukrit Dhingra

  • We want to send a mail with attachment pdf file.

    Hi!!!
    We want to send a mail with attachment pdf file.
    The PDF file this is in the server sap.

    Hi,
    Pls check web logs like
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • Store PDF files in database.

    hi all
    how to store PDF files in database and how to retreive plz guide me thanks in davance.
    sarah

    Sarah,
    so your pdf-document is stored in the database.
    we jump over step 4 what would be the code for sending the pdf-file to the database ...
    Step 5 open the stored pdf-file:
    Please create a when-mouse-doubleclick trigger on your filename-item:
    declare
    l_temp_file constant varchar2(255) := client_win_api_environment.get_environment_string ( 'Temp' ) || '\temp.pdf';
    begin
    if
    :pdf.filename is not null
    then
      if
        webutil_file_transfer.db_to_client ( l_temp_file, 'PDF', 'PDF', ' id_pdf = ''' || :pdf.id_pdf || '''' )
      then
        client_host ( 'cmd /C start ' || l_temp_file );
      else
        Message ( 'Failure while downloading ' || :pdf.filename || ' from the database. ' || dbms_error_text );
        Message ( ' ' );
        clear_message;
      end if;
    else
      Message ( 'No PDF-file selected.'  );
      Message ( ' ' );
      clear_message;
    end if;
    end;Save your form, compile and run it.
    Execute a query on the pdf-block and doubleclick your filename item.
    Now you can read your forms reference pdf direct from the database :).
    Regards

  • Problem store pdf file after downlod , message memery or store to little, the harddrive hav 1,3TB ;-

    problem store pdf file after download from web. Message, store to littel from reader11. Where ist tht problem or the solution?
    thanks

    Dear Mr Willener
    Thanks for the mail, that problem is soluted, press the botton, store as copy.I found it in secound  read
    A wish: In reader 9 is the solution better.
    Regards from Ilmenau
    L.Gleichmann
    [signature and auto-quote removed by host]

Maybe you are looking for

  • Problem in Jdeveloper 10.1.3, web services and document style.possible bug?

    Hello! I would like to generate a document-style web service from a wsdl file. The problem is that when I use it I get the following error: "operation echoStruct must have exactly one parameter as part of the SOAP body when used with a document-bare

  • How can I make the text larger in this flashing box from Old Toad?

    I'm trying to use flashing text here: http://web.me.com/phelpssculpture/Site/hands_on.html which I copied from OldToad's site here:http://web.me.com/toad.hall/Demo_1/Miscitems.html I can't figure out how to make the text larger. Any suggestions? Than

  • New Feature Added?

    I have been on these discussions on and off since, oh, maybe 4:00, and just now I came back on and now I can mark if this post solved my problem or not. However, these are not on the threads that I start, only other threads taht I post on. What does

  • /etc/hosts is ignored

    I configured my computer to use tor and dnsmasq to resolve dns queries exactly how the arch wiki said to. This seems to work fine, however, when I try to add a entry into /etc/hosts it is ignored. To fix this I tried commenting out no-resolv but it d

  • Change workflow assignments to an existing order in Order Managemet

    Hi everybody, can anyone please tell me how can I change the workflow assigned to an existing Sales Order? I have changed the assignements to the Transaction Types but when i re-submit the wf activities i still get the old flow... Thanks in advance,