I have a question for you: Inserting Word document in BLOB column

Hey Experts,
I have found a good info and a sample on how to achieve this on
http://www.sys-con.com/java/source/5-6/code.cfm?Page=76.
declare
f_lob bfile;
b_lob blob;
begin
insert into sam_emp(empno,ename,resume)
values ( 9001, 'Samir',empty_blob() )
return risumi into b_lob;
f_lob := bfilename( 'MY_FILES', 'MyResume.doc' );
dbms_lob.fileopen(f_lob, dbms_lob.file_readonly);
dbms_lob.loadfromfile
( b_lob, f_lob, dbms_lob.getlength(f_lob) );
dbms_lob.fileclose(f_lob);
commit;
end;
I have a jsp project and the users ( on the client side)must be
able to create a word document and send it to the server with an
uplaod servlet. With another servlet or jsp i want to process
this word document in BLOB column using JAVA. The sample above
uses PL/SQL to achieve this. Is there a way i can do this in my
servlet/jsp to do the same thing?
Any hints are welcome!

The option should be visible here: http://support.mozilla.com/en-US/kb/Printing%20a%20web%20page#w_print-window-settings
Print range section - Lets you specify which pages of the current web page are printed:
* Select '''All''' to print everything.
* Select '''Pages''' and enter the range of pages you want to print. For example, selecting "from 1 to 1" prints the first page only.
* Select '''Selection''' to print only the part the page you've highlighted.
Does it work for you?

Similar Messages

  • Hello, I have a question for you. receipt of some Internet providers or notices notifications on the lock screen and I consume the battery on my iPhone 4S. would you please tell me how do I block these ads in blue letters on the screen me? thanks

    hello, I have a question for you. receipt of some Internet providers or notices notifications on the lock screen and I consume the battery on my iPhone 4S. would you please tell me how do I block these ads in blue letters on the screen me? thanks

    Hi demir67,
    Welcome to the Support Communities!
    The articles below will show you how to block text messages from your iPhone:
    iPhone User Guide for iOS 7:
    Send and receive messages - iPhone
    http://help.apple.com/iphone/7/#/iph01ac18d71
    Block unwanted messages. On a contact card, tap Block this Caller. You can see someone’s contact card while viewing a message by tapping Contact, then tap the "i" with the cirle.   You can also block callers in Settings > Phone > Blocked. You will not receive voice calls, FaceTime calls, or text messages from blocked callers.
    iOS 7: Understanding call and message blocking
    http://support.apple.com/kb/HT5845
    Notification Center - iPhone
    http://help.apple.com/iphone/7/#/iph6534c01bc
    Set notification options. Go to Settings > Notification Center. Tap an app to set its notification options. You can also tap Edit to arrange the order of app notifications.
    Cheers,
    Judy

  • I have some question for you???

    Consider this Class diagrams of Directed Graph
    ***Picture 1 >>> http://thaimp.i8.com/4-1.jpg
    Please write Java Application when have this data example
    ***Picture 2 >>> http://thaimp.i8.com/4-2.jpg
    -------------------- End of Question --------------------------
    Hope you like it : )

    BufferedImage img = new BufferedImage( 150, 150 , BufferedImage.TYPE_INT_RGB  );
    Graphics g = img.getGraphics();
    g.setColor( Color.PINK.fouler() );
    g.fillRec( 0, 0, 150, 150 );
    g.setColor( Color.PINK );
    g.drawString( "50meg does not support linking...." );
    g.flush();
    ImageIO.write( img, .... );

  • I have a question for you. How can i print only a few pages (so not everything) from a bookmarked page? Please send your answer to peterdoornaar@***.nl THANKS !!!

    I bookmarked a website and wanted to print it. It is about a book. Somehow firefox crashed, and recovered. Now i want to print the the last 8 pages but it prints EVERYTHING AGAIN. I tried copying and pasting, didn't work. I really hope you can help me.
    with regards
    Peter Doornaar
    ''no email support from forum threads, all responses are posted here in the forum''

    The option should be visible here: http://support.mozilla.com/en-US/kb/Printing%20a%20web%20page#w_print-window-settings
    Print range section - Lets you specify which pages of the current web page are printed:
    * Select '''All''' to print everything.
    * Select '''Pages''' and enter the range of pages you want to print. For example, selecting "from 1 to 1" prints the first page only.
    * Select '''Selection''' to print only the part the page you've highlighted.
    Does it work for you?

  • Hey guys I have a question for you all.

    I set my security question a couple of years ago and now can't remember the answers and the email I set up to retrieve the answers I also can not remember the password to. So if you guys have any easy solutions... I can get on my account and buy things easily on my ipod, but when I try on my mac I have to answer the security questions. Help please!

    The Three Best Alternatives for Security Questions and Rescue Mail
        1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'. Please be patient waiting for the return
              phone call. It will come in time depending on how heavily the servers are being hit.
         2.  Call Apple Support in your country: Customer Service: Contacting Apple for support or
              Apple ID- Contacting Apple for help with Apple ID account security. Ask to speak to
              Account Security.
         3.  Rescue email address and how to reset Apple ID security questions.
    How to Manage your Apple ID: Manage My Apple ID

  • Toocan---I have a question for you

    Can you please tell me in simple terms what I need to do to add songs from ITUNES to IPOD without losing all the songs on my IPOD. My Itunes library I am slowly building back up, but dont wish to lose my 17,000 songs on my POD. thanks in advance for answering this---remember I am illiterate when it comes to doing crap like this....Jeff

    I appreciate you guys but as I said before all I really wanna do is add a few songs to my IPOD that I recently uploaded from CD. I paid 25.00 last night for a service to re-add my songs from POD to itunes and it didnt work. So now I just would like to keep my 17,000 songs on my IPOD and add a few more from ITUNES. Is there an easy way to do this???? Jeff

  • Problem Loading Word documents in BLOB columns

    Hi
    I tried loading the documents in the BLOB column, then indexing and then text serach, but the query does not work or guess that the document does not get loaded
    The table structure is
    table: Content
    feilds
    id number (10) pk
    author varchar2(30)
    doc_name varchar2(60)
    document BLOB default empty_blob()
    loaded data with SQL loader and the file details are below
    the load1.ctl file
    LOAD DATA
    INFILE 'd:\intermedia\data1.dat'
    INTO TABLE contents
    APPEND
    FIELDS TERMINATED BY ','
    (id SEQUENCE (MAX,1),
    author ,
    doc_name
    LOBFILE (CONSTANT 'c:\nandeep\jun_news.doc') TERMINATED BY EOF)
    data1.dat contents is as follows
    nandeep,june news,c:\nandeep\jun_news.doc,
    Any reason why it does not work or what could be the alternative
    -nandeep
    null

    Your are in the wrong Forum. Documents cannot be loaded in iFS using SQL*LOADER

  • Question for you Deathstalker

    Hi Richard.
    I have a question for you about the MSI K7N2G-LISR (NVIDIA nForce2 IGP) motherboard we were discussing.
    If this board has integrated graphics, why do I need a video card? I had someone else ask me the same thing but I didn't know the answer.
    Thanks
    Mike

    Hi Mike, I not sure if I should step in and put in this reply, but couldn't stop myself not to as this is quite important.
    Mobos that comes with on board/integrated/shared Memory Graphics usually dun ends up giving you good framerates and graphics details. I have a friend who spent Sin 2000 over dollars to D.I.Y a creative slix look alike com with on board graphics has regretted not getting a proper mobo with AGP slot. The graphics that are produced on his com are like running a TNT2 Riva 32MB card for games like warcraft 3 and any latest 1st person shooting games... juz imagining it...
    I'm the type of person who are more for graphics and smoothness of gameplays and details of model as I do some 3D designs and picture designing. I juz dun understand why there are still people going for onboard graphics and complaining about poor fps produced which they should have blame themselves for it X( ... It's good that you've pointed out your doubts on that...
    All the Best...  :D !!!

  • Hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my

    hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my server works.  Could it be related to  "Network Preference & Monitor icons missing from my system preferences page?  and my guest sign=in account is now the main account??     thanks you. jb

    hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my server works.  Could it be related to  "Network Preference & Monitor icons missing from my system preferences page?  and my guest sign=in account is now the main account??     thanks you. jb

  • I have a question for the Adobe customer service dept., not for the "community" as a whole!

    I have a question for the Adobe Customer Serice Dept., not the "community" as a whole. And I expect an answer! I want to know why I am expected to sign up for another service package when I just paid $25+ yesterday to be able to convert files back and forth from a PDF to a Word file and then back to a PDF. What kind of rip-off is this?

    Hi,
    I am very sorry that you had unpleasant experiences with our customer service.
    If you would like to export your PDF files to MS Word files then ExportPDF tool will do the job.
    If you would like to convert MS Word files to PDF then ConvertPDF tool will the the job.
    If you would like to export your PDF files to Word file then convert the Word files back to PDF then PDF Pack service is required which includes ExportPDF/Convert to PDF/Combine Files tools.
    Please let me know if you have any questions/issues.
    Thank you.
    Hisami

  • HI i am user for InDesincc TrialVersion now. i have serious question for all guys in here. at first i installed Indesigncc as korean language but now i need to indesigncc english language installation. and then now i cant translate and changing korean lan

    Daniel SterchiHI i am user for InDesincc TrialVersion now. i have serious question for all guys in here. at first i installed Indesigncc as korean language but now i need to indesigncc english language installation. and then now i cant translate and changing korean language interface to english language interface at indesigncc download. so i wonder How i can do that?...i am very seriuos for now....i want indesigncc version for Eng.Language interface. but now i cant do that .i dont konw how i can presented kor. interfacing transite to eng. interface..
    forumnotifierHI i am user for InDesincc TrialVersion now. i have serious question for all guys in here. at first i installed Indesigncc as korean language but now i need to indesigncc english language installation. and then now i cant translate and changing korean language interface to english language interface at indesigncc download. so i wonder How i can do that?...i am very seriuos for now....i want indesigncc version for Eng.Language interface. but now i cant do that .i dont konw how i can presented kor. interfacing transite to eng. interface..

    First of all, uninstall it with the uninstaller.
    Then:
    Install the ENGLISH version.
    Change the language in the CC app to Korean.
    Install the Korean version. (DON't uninstall the English version)
    Change back the langauge in the CC app to English.
    When your OS is running in English, InDesign will run in English with Korean functionality added, if your OS is running in Korean it will take the Korean User Interface, so let your OS run in English.
    Every installer language will add needed plugins for the work with that language. E.g. If I install Hebrew, I get RTL functionality in German version, only if I would change the OS language it would change the language of InDesign, InDesign takes always as UI language the language of the OS if available, if not (in your case you have uninstalled English before), it takes any version which is available in the order of languages specified in the OS.
    If you need to run your program in a different language than the OS but you have installed it in the language of the OS it becomes more difficult. You would have to use some system tools which are able to force a program to open with a different language. Most of those tools are freeware.

  • I have a question for iMac 27-inch  latest version

    Greetings to support Apple
    I have a question for iMac 27-inch  latest version
    I want to reach a PlayStation 4 on the iMac 27-inch screen
    What are the requirements needed to run the PlayStation 4 on the screen
    Please help

    This is a user to user forum, you are not contacting Apple directly. I would recommend you search to see all the questions others have posted regarding the same or similar question.
    Good luck.

  • I have a question for apple I bought a 15$ iTunes card and got to movie rentals it's been 3 days and the movie bearlly downloaded onced it finished it restarted it self I want my money back....what do I do

    I have a question for apple I bought a 15$ iTunes card and got to movie rentals it's been 3 days and the movie bearlly downloaded onced it finished it restarted it self I want my money back....what do I do

    You will have to contact Apple/iTunes support, we are just other users like you, not Apple employees.
    http://www.apple.com/support/itunes/contact/
    You can also Report a Problem with the rental in iTunes on your computer.
    http://appletoolbox.com/2012/03/how-to-report-a-problem-for-an-iphoneipadipod-to uch-app/

  • In I tunes I cant down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work

    In I tunes I can't down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work.

    Thanks C F McBlob but I recursively changed the permissions of my Music directory meaning every file and directory beneath it, as well as the directory itself, had the write permissions added.
    I used "chmod -R u+w ./Music" and chmod -R g+w ./Music" to do it.
    Alas, no cigar. :-(

  • I have a question can you please add so the iphone also have 5 icon dock like the iPad have it would make my day easy as h..:) maby in the next update? What do you think?

    I have a question can you please add so the iphone also have 5 icon dock like the iPad have it would make my day easy as h..:) maby in the next update? What do you think? What do everyone think?

    I have a question can you please add so the iphone also have 5 icon dock like the iPad have it would make my day easy as h..:) maby in the next update? What do you think? What do everyone think?

Maybe you are looking for

  • Group by clause get the last row of max occurence

    Table 1 Division Incident 1 xyz 2 abc 3 efg 1 klo 2 jkl I want to have an sql query which groups the occurrences of (division) in the table. If two grouping counts are same, it should give largest division.. division 1 and 2 have 2 occurrences each.

  • Max Query Count setting

    Hello colleagues, Probably you many know there is Max Query Count setting in MII. Does any of you experience performance concerns by dealing with large number of query count?  or does any of you have a recommendation for how to set max query count, e

  • I need to Find a Version of IE that works on a Mac

    I am a realtor and have several real estate apps that only work on IE. I've heard that there are some old IE versions that will still work on a Mac but I don't know where to find them and need help. Thanks!

  • Do not have access to that key problem

      Windows XP   HKEYLOCALMACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/SharedDlls. This is the error message I get whenever I try to install Itunes 7.1. HELPPPPP MEEEE!!!!

  • Will I still have access to the programs that I have purchased in the US if I switch my AppleTV to say it is in the UK?

    I have an AppleTV that is set up so that I can use it in the US and purchase US content. What happens if I switch it to say that I am in the UK so that I can purchase shows from the BBC (not "BBC America" but the real BBC)? Will I no longer have acce