Store word files, documents and pics in database

Hi guys,
I want to store objects like word files, excel sheet, pics in one of my column in a table.
what shud be the datatype of my column if i am using oracle 9i release 1.
and how to store these files in database????? how is it possible thru forms.
regards,
Imran Baig

On OTN is a demo File Upload Utility for Forms 9i/10g
The demo for 6i can be found here

Similar Messages

  • Store objects like word files, excel sheet, pics in database

    Hi guys,
    I want to store objects like word files, excel sheet, pics in one of my column in a table.
    what shud be the datatype of my column if i am using oracle 9i release 1.
    and how to store these files in database????? how is it possible thru forms.
    regards,
    Imran Baig

    On OTN is a demo File Upload Utility for Forms 9i/10g
    The demo for 6i can be found here

  • I am running Acrobat X Pro on Windows 7 in Parallels. I have tried to install the Acrobat updates, but they won't install. Today I tried to create a pdf from a Word 2013 document and it crapped out. I tried to uninstall Acrobat and got Error 1310. Error w

    I am running Acrobat X Pro on Windows 7 in Parallels. I have tried to install the Acrobat updates, but they won't install. Today I tried to create a pdf from a Word 2013 document and it crapped out. I tried to uninstall Acrobat and got Error 1310. Error writing to file: c:\Config.Msi\feea.rbf. What do I do?

    Hi Beverly ,
    Please refer to the following and see if this helps.
    https://helpx.adobe.com/creative-suite/kb/error-1310-error-writing-file.html
    Regards
    Sukrit Dhingra

  • Help:- Store Word file in database using blob

    Hai all,
    i want to store word document in database and reterieve from database but i don't have any idea i heared about blob but i don't know how to make it any one have source code or example form pls send me
    email: [email protected]

    Hello,
    First of all, you have got to be granted the privilege to read and write to the file system, this is a must to use BFile read access.
    A global function bfilename returns a bfile taking the file path as an argument is needed to construct a blob object through dbms_lob.loadfromfile.
    A very helpful example I found on orafaq follows:Create a link to the directory where the file to load in the blob is
    (connect as system then grant read privilege to your user):
    create or replace directory blob_dir as 'C:\Documents';
    Custom the following procedure that I copied from a Thread
    create or replace procedure blob_ins(p_id in number, p_filename in
    varchar2) as
    l_bfile bfile;
    l_blob blob;
    begin
    insert into blob_test(p_id, empty_blob())
    returning blob_file into l_blob;
    l_bfile := bfilename('BLOB_DIR', p_filename);
    dbms_lob.fileopen(l_bfile);
    dbms_lob.loadfromfile(l_blob, l_bfile, dbms_lob.getlength(l_bfile));
    dbms_lob.fileclose(l_bfile);
    commit;
    return;
    end blob_ins;
    You can use UTL_FILE package in another way, but this is much more safe;
    Have Fun
    Hossam Al Din

  • Store Word/Excel Document in Database 9.2.5

    Hi
    Can you give me sample code how to store word or excel document from forms 10g rel 2 and read the document from forms.
    Thanks

    This question has been asked many times. If you search the forum you will find many answers.

  • When I download a Word file from a classroom management database, why won't Firefox open the file without me having to save it?

    I have been using Firefox for many years with Blackboard products. In the last six months or so, when I try to download a student's file that is a Word .docx, it won't let me open it without saving it. Word .doc files work fine. I don't have this problem with Internet Explorer, but of course IE is clunky, slow, and doesn't fill in forms. Any help would be appreciated. Let me know if I can supply more details.

    Two possible problems. <br />
    1. BlackBoard never supports the latest version of Firefox, for a few reasons. Some schools don't run the latest version of BlackBoard Vista or Campus Edition. Also, BlackBoard upgrades seem to be tied to the "school year" cycle, the changes they make to improve and update their software seem to be rolled out for the fall term so that changes aren't being made during the normal "school year" and possibly causing problems for the schools. That also may be a function of their contract / payment cycles with the schools that use their programs.
    http://www2.blackboard.com/tuneup/viewpage?name=tuneup_browser_tuneup_windows_firefox <br />
    Select the link for the version of WebCT Vista or Campus Edition ''(version info is usually at the bottom of each page, in the footer)'' that your school is using, then see which version of Firefox is compatible.
    Depending upon which version of WebCT your school is using, you will have to use Firefox 3.6.x, Firefox 3.5.x, or Firefox 3.0.x when accessing the Blackboard site.
    My advice is to install the Firefox Portable version that you need for Blackboard on your computer, and use that installation only for Blackboard. Continue to use 4.0.1 for all other web browsing. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy
    2. Firefox uses a Plugin ( you have Office Plugin for Netscape Navigator installed) to open files that aren't "internet files", like word processing documents. <br />
    I can't help you directly with Office, as I use Open Office, but there should be a preference for that Plugin within your Office preferences or options under something like Internet, to have those files '''Display documents in browser'''. <br />
    Or see this to make sure you have your "file type" set correctly. <br />
    http://support.mozilla.com/en-US/kb/Managing+file+types

  • Printing microsoft word 2003 document and pdf created from the document are different

    I created a microsoft word 2003 document with jpg pictures and printed it on my HP Inkjet printer. I then created a pdf by saving as a pdf from the microsoft word 2003 document. The settings for images were 300 dpi and zip compression. The pdf file created was ~3 MB whereas the word document was ~250 KB. It looked fine on the screen but when I printed it the jpg pictures from the pdf were very dark and not very desirable. When I printed it on my HP Color laser 2600n printer I couldn't see the difference in the jpg pictures.
    I am creating the pdf files to send to the online publisher lulu.com to print. I have used the settings to create the pdf they recommend from their website; however they aren't real clear in the information they give for the recommended settings.
    My question is why would the print out be so awful using the HP Color Ink Jet printer since it is very good for printing pictures?

    There are many reasons, but most revolve around the color space and coding for the colors. Acrobat uses 8 bit RGB.

  • How to load images from file system and save in database

    Hello Fellows!
    I have a problem and try to explain:
    Plateform:
    Operating System: Windows 98, Form 6i and Oracle 8
    Table in the database
    Table:Emp_pic with columns i.e. (empno and pic type long raw)
    In forms, I have a data block which contain the columns of the emp_pic table and a control block which have a push button contains the trigger as follow, also attach PL/SQL library i.e. D2kWUTIL.PLL
    When-Button-Pressed (Trigger)
    Declare
    temp varchar2(400);
    Begin
    temp := win_api_dialog.open_file('Open File','d:\pic','*.tif',true,win_api.ofn_flag_default,false);
    read_image_file(temp,'tif','emp_pic.pic');
    end;
    The problem when I pressed the button it does not display open dialog box what is the wrong with the code or else.
    Thanks in advance
    (BASIT)

    What do you mean "it did not work"? You need to post more information, such as what errors you got.
    My guess is that it did work, but it ran on the middle tier, which is where Forms is running. Commands like that need more work to execute on the client.
    Go to the Forms area on OTN and download the Oracle9i Forms Samples. They have demos and source code to move files from the client to the server.
    Coming soon will be a utility called WebUtil which will make this even easier.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • How to store entire files in a oracle 7 database

    How can i store entire files for example image files in a oracle 7 databese. Does is support LOB??

    How can i store entire files for example image files in a oracle 7 databese. Does is support LOB??Hi there,
    to be short: yes you can.
    I actually did it myself, but there a several problems to tacle first:
    - Use LONG RAW as datatyp
    - you can have only one column in a table with LONG RAW
    - consider the overall amount of space used in the database
    - adjust the size of the rollbacksegments.
    Have fun
    Rolf

  • Importing a M-Soft Word file (document)

    I have a simple M-soft Word file on my Windows 7 desktop computer. Every time I try to import it to my 8830 Curve, thru the Desktop S-ware, I get a dialogue box that says "There was an error importing files. No additioanl applications can be found. Your file might contain applications that already exist in the application list, are not compatible for your device, or have errors,"
    Well, I know it has no errors. I'm puzzled as to why, considering all the stuff my 8330 can do, I can't get it to accept tis simple file.
    What am I doing wrong please?
    Steve P.

    You didn't say how you were attempting to import the file.
    Simplest ways:
    Email the file to yourself and save the attachment.
    Enable Mass Storage Mode on your Media Card and connected via USB, just drag and drop the file from the PC to the Media Card using your PC file manager.
    1. Go to Options >> Media Card
    (some themes or BlackBerrys may call this "Settings >> Media Card")
    2. Check the following settings (if they are not listed this way, then change to reflect the following:
    a) Media Card Support: On
    b) Mass Storage Mode Support: On
    c) Auto Enable Mass Storage: Yes
    3. Save the settings and exit
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Php - get name from 'file field' and pass to database?

    Is it possible to extract the 'image' name from the 'file' field and insert it into a database using php?
    <input type="file" name="ImageName" id="ImageName">
    I can't have:
    $ImageName = trim($_FILE['ImageName']);
    So hows this handled?
    Cheers
    Os

    Murray *ACP* wrote:
    Should be pretty strightforward, Os.  You know where to ask the questions!
    Yeah.. but I keep coming up against brick walls
    I'm trying to manipulate David Powers PHP Solutions chapter 6 - Uploading Files.
    He's got some sort of complicated function going on which makes sure no two images which are uploaded to a folder have the same name. i.e., london.jpg becomes london_1.jpg. (the php even inserts underscores if there are gaps in the image name)
    If I just use $ImageName = $_FILES["ImageName"]["name"]; potentially I could end up with dozens of images with the same name in the database, which is NOT desirable.
    Of course I could simplyfy everything and use two forms - 1 for uploading the images to the upload folder and then one for inserting the images details into the database BUT that has the drawback of the client needing to type in the name of the image identically to match the name which has been generated in the upload folder and that aint gonna happen in a million years

  • Word files corrupt and won't open

    Word Files are suddenly corrupt will not open. How do I recover? 

    Hi,
    Have you tried a repair? From Word choose open, but instead of choosing open click the arrow from the combobox and choose "Open and Repair" see if that helps.
    Maurice
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer. Thank You

  • I can not save my PDF file into a Word file document...how do I do this?

    How do I convert/save my PDF file into a Word format document?

    Hi Thomas,
    Please check out our Getting Started Guide: http://forums.adobe.com/docs/DOC-2412
    If you have any questions, please let us know!
    -David

  • Opening up Word 2011 document and multiple documents open up

    Why is it that when I open up a Word 2011 document, it opens up multiple previous word documents.  How do I change this?

    The curse is lifted!
    http://www.globalpsychics.com/enlightening-you/metaphysics/being-psychic/remove- curses.shtml

  • Including Word/PDF documents and Jpegs in a folder on a DVD

    Hello
    I'm building a DVD of my short film and want to include the press pack in a folder on the DVD. The folder will contain 5/6 JPEGs and 3/4 word documents/pdf documents.
    Anyone have any idea how I go about this?
    Thanks

    Add the files to the ROM section of your project.

Maybe you are looking for

  • Enter data in a form - save that data to disk...

    I've got a form application which has typical fields for data entry, ref number, name, address etc.....up to ten items. I have a Main Menu form, four other forms, and can move between them fine. This is a cut down example, with only one text field, o

  • InDesign text out of sight in page!

    Dear All, I have one problem in text out of sight in page! using InDesign CS5.5 windows.@@ In my InDesign document have 7 pages, and 3 column text flow, When I removed the 3rd column one anchored text frame it will "text out of sight" into the 2nd co

  • Not send mail for external domains

    Hi, I have installed OCS 10g(10.1.2) in linux. All components ok, but i not send mail for external domain. Att, Mesti

  • Sloooow MacBook Air

    My MacBook Air is slow. It is slow from start up. After entering the password at the login window it shows a beach ball. The screens do no open with a whoosh. They open staccato. First grey screen, then wait, then a window, then a wait, then sudden a

  • Accessing a Thread by name?

    Hello everyone, I have a question about thread programming. I have several threads running and the are all named. I'm wondering if there is a way from my main code to access a specific thread by name? for example, my main program wants to call a meth