Loading Info from BLOB to HTML

I'm using Oracle 8.0, PLSQL Cartridges on OAS 4.1.8
I have information saved in BLOB columns,
How I could publish this info. on the WEB?
null

Hi Venkat,
   <i>Delta request REQU_429VZAIHRVBTP2OUFU2AP8T4Q is incorrect in the monitor A repeat needs to be requested</i>
  This is bcoz, Your last delta from ODS to CUBE is not success full.
  Just delete the initialization from ODS to CUBE and reinitalize <b>with out</b> data transfer. And pull the delta from ODS to cube after initialization. It will solve the problem.
Hope it Helps
Srini

Similar Messages

  • How to load images from BLOB to javascript?

    hi, Guys:
    I need to load thumbnail images from BLOB to multiple markers' infowindow in Google map . I have implemented Google map in APEX. I load the data suchas text for every marker's infowindow from Oracle database table with PL/JSON, and infowindow works fine. Could anyone give me a suggestion or example so I know how to load images to javascript?
    Thanks a lot.
    Database: Oracle 11g R2
    APEX: APEX 4.1
    Thanks.
    Sam

    lxiscas wrote:
    hi, VC:
    Thanks for your kind reply. I need to render these images out of APEX session, actually in javascript that is related to Google map markers' infowindow.
    I checked the documents of APEX_UTIL.GET_BLOB_FILE_SRC, but my impression is I need to use it in APEX instead of javascript if my understanding is correct. I already implemented a procedure with PL/SQL to load images from a BLOB column in Oracle database. But the problem is, how can I pass it to javascript code out of APEX to javascript (I could pass text or number from APEX to javascript with PL/JSON though,But I assume that still google map will be within a valid apex session? if so you should be able to use the above api.
    Basically what this api does is generates a kind of url to each blob in the database, not sure how google api's deal with this though. Why don't you give it a try?
    The other option is to make your pl/sql procedure public and then you can generate the json to include the images urls such as:
         "employees" : [{
                   "firstName" : "John",
                   "lastName" : "Doe",
                   "imgSrc" : "http://somewhere/db_schema.your_download_proc?p_file=#ID#",
                   "firstName" : "Anna",
                   "lastName" : "Smith"
                   "imgSrc" : "http://somewhere/db_schema.your_download_proc?p_file=#ID#",
                   "firstName" : "Peter",
                   "lastName" : "Jones"
                   "imgSrc" : "http://somewhere/db_schema.your_download_proc?p_file=#ID#",
    }And then you can use this new attribute to populate the images in javascript using standard img tag
    See this tutorial http://docs.oracle.com/cd/E14373_01/appdev.32/e13363/up_dn_files.htm
    I did not find any method in PL/JSON to pass image object)? So far I only found example to load images from local files to javascript.Hmm..I don't think you should load image objects.
    Vikram

  • Load JAR from BLOB column?

    I have a JAR file that load and works find when I use the loadjava utility, but my software is now being deployed to a server that I don't have remote access to and can't connect remotely to the Oracle database. I need to push out updated JAR files periodically and would like to automate the updates without requiring help from their DBA.
    Is it possible to load my JAR into a BLOB column in the database and then have it loaded from that? In my testing it appears that I can do that for a single class, but I'd like to do the entire JAR. I've tried CREATE JAVA ... USING BLOB, but that appears to be expecting a character stream (java source).
    My software is on a separate server from the database, so I don't think I can use a BFILE???
    We're using Oracle 10g.
    Thanks!

    Hi
    Sure you can do that :)
    I have done a CMS Application Archive importer into DBPrism CMS.
    Look at the code (importDir function):
    http://dbprism.cvs.sourceforge.net/viewvc/dbprism/cms-2.1/src/com/prism/cms/core/Util.java?revision=1.10&view=markup
    First you has to iterate on each entry of the JAR using ZipInputStream class, then for each entry you can create a temporary BLOB to process each "create java class using .." SQL operations.
    Here a code snipped:
    695 BLOB newContent =
    696 BLOB.createTemporary(conn, true, BLOB
    697 .DURATION_SESSION);
    698 OutputStream ow = newContent.setBinaryStream(1L);
    699 while ((size = jin.read(buff, 0, buff.length)) > 0)
    700 ow.write(buff, 0, size);
    701 ow.flush();
    702 ow.close();
    703 ow = null;
    704 cs.setBLOB(1, newContent);
    705 cs.setString(2,(isResource) ? "java resource" : "java source");
    706 cs.setString(3, classOrResourceName);
    707 cs.registerOutParameter(4,Types.VARCHAR);
    708 try {
    709 cs.executeUpdate();
    710 String loadedClass = cs.getString(4);
    711 if (!isResource)
    712 listOfLoadedClasses.put(loadedClass,classOrResourceName);
    713 log.debug(".importDir - OK loading: "+loadedClass);
    714 } catch (SQLException s) {
    715 log.warn(".importDir - Error loading: "+classOrResourceName,s);
    716 } finally {
    717 newContent.freeTemporary();
    718 }
    cs is:
    674 cs =
    675 (OracleCallableStatement)conn.prepareCall("{ call begin\n" +
    676 " update create$java$lob$table set LOB = ?, loadtime=sysdate where name = 'LOADJAVA/LOB/KEY';\n" +
    677 " execute immediate 'create or replace '||?||' named \"'||?||'\" using ''LOADJAVA/LOB/KEY''';\n" +
    678 " ? := \"NameFromLastDDL\"(0);\n" +
    679 " end }");
    Hope this help, Marcelo.

  • How Do I Load Info From One Address Book to Another?

    I'm setting up a new mail / address book for a member of the family.
    We have loader her email settings and imported her emails. She wants to use my address book data. (I know we can't use the same address data but just want to start her out with the stuff in my book).
    We use different accounts on the same iMac.
    I made a backup of my addresses -- file menu / "Back up AddressBook ..." and have copied that file to her user area.
    Now ... how do I get those addresses into her address book?

    I made a backup of my addresses -- file menu / "Back up AddressBook ..." and have copied that file to her user area.
    Now ... how do I get those addresses into her address book?
    That's not the way to do it. Instead, do this:
    From your copy of Address Book, select the All group and export it as a single vCard; this will include every contact in your Address Book.
    Copy that file to the other account on the Mac. Launch Address Book there and then drag & drop that vCard file you copied over onto the open Address Book window; that will import all the contacts.

  • What process to fire to load CSV from BLOB to table(Urgent !!!)

    Hi i want to upload emp.csv and then from there kick up the csv to already existing table emp.so what code should i put where ?
    I need it badly.
    Thnx in advance.
    Cheers,
    ROSY

    See
    Re: Loading a CSV file into a table

  • After PC crash, can I load info from IPod to new ITunes library?

    My laptop crashed and Dell reconfigured it back to factory settings. My ITunes library was deleted. I downloaded ITunes again but now it doesn't recognize the data from my IPod. How can I load the data from my IPod into the new ITunes library? Is there anyway to "reverse sync"?

    1). Connect your iPod to your computer. If it is set to update automatically you'll get a message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod.
    2). When your iPod appears in the iTunes source list change the update setting to manual, that will let you use our iPod without the risk of accidentally erasing it. Check the "manually manage music and videos" box in Summary then press the Apply button. Also when using most of the utilities listed below your iPod needs to be enabled for disc use, changing to manual update will do this by default: Managing content manually on iPod and iPhone
    3). Once you are safely connected there are a few things you can do to restore your iTunes from the iPod. There are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. You'll find that they have varying degrees of functionality and some will transfer movies, videos, photos, podcasts and games as well. Have a look at the web pages and documentation, this is just a small selection of what's available, they are generally quite straightforward. You can read reviews and comparisons of some of them here:
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    TuneJack Windows Only (iPhone and iPod Touch compatible)
    SharePod Windows Only (iPhone and iPod Touch compatible)
    iPod2PC Windows Only
    iDump Windows Only
    iPodRip Mac & Windows
    YamiPod Mac and Windows
    Music Rescue Mac & Windows
    iPod Music Liberator Mac & Windows
    Floola Mac & Windows
    iGadget Mac & Windows (iPhone and iPod Touch compatible)
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    TouchCopy Mac & Windows (iPhone and iPod Touch compatible)
    If you have any iTunes Music Store purchases the transfer of purchased content only from the iPod to authorised computers was introduced with iTunes 7. You'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide
    4). Whichever of these retrieval methods you choose, keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync.
    5). I would also advise that you get yourself an external hard drive and back your stuff up, relying on an iPod as your sole backup is not a good idea and external drives are comparatively inexpensive these days, you can get loads of storage for a reasonable outlay: Back up your iTunes library by copying to an external hard drive

  • Loading info from actvity data collector into SM BI client

    Experts:
    We enabled  actvity data collector  in our EP, and want to load the data collected into the SM BI client.
    We are not sure how to do the load.
    Could you provide some links here?
    Thanks!
    PS: EP is monitored by the said SM7.0

    Hi Christy,
    You may want to read about "No-Limits Portal Statistics".
    It provides a WebBug system to write custom data via ADC (Activity Data Collector), and a JavaScript API to collect custom characteristics and integrate with internal tools like BI or SM.
    Also read,
    http://wiki.sdn.sap.com/wiki/display/EP/No-LimitsPortalStatistics
    Hope this helps.
    Regards,
    Varun

  • HT5624 I was down loading info from my computer to my phone but use my Daughter  apple account instead of my own

    i need a pass word for my phone

    Ask your daughter... or better yet... Re-Sync using your ID.
    Restore as New if necessary >  http://support.apple.com/kb/HT1414

  • Read Image file from BLOB.

    Hi All,
    I am trying to load data from BLOB data from database and save the image file.
    SQL to insert data:
    INSERT INTO BLOBTest (BLOBName, BLOBData)
    SELECT 'First test file', BulkColumn FROM OPENROWSET(Bulk 'C:\Inbound\logo.jpg', SINGLE_BLOB) AS BLOB
    I am using the following 'SELECT top 1 BLOBData from BLOBTest' to get the data and setting the value to 'Image Saver' action. The image file is saved to the specified path, but the image is not opening.
    I get "Image is damaged, corrupted or is too large message. The file is around 40 KB."
    Am i missing something.
    Any help would be highly appreciated.
    MII Version: 14.0 SP 3
    Thanks,

    I think this thread might help: Can we interpret Oracle BLOB data in SAP MII and how?
    Basically MII doesn't support the BLOB/CLOB data types so in your query you will need to convert it to a base64 string that MII can consume using the image saver action.
    Regards,
    Christian

  • Just bought iPhone 4, syncing it with all my info from my previous 3gs.

    I just bought the iPhone 4, and I want it to mirror my previous iPhone 3gs.  I used to sync my 3gs phone at least once a month. But when i registered my iPhone 4, and the drop down it says restore as backup of ?, I select my 3gs and it loads info from Sept of '09. Please help! So then I proceed to sync my 3gs and start over. So I restore my brand new iPhone 4 and restore as backup of............ and I select the 3gs again, and again really old info loads.

    I would recommend connecting your 3GS w/ your iTunes and manually backing up the info. Then connect the Iphone 4 and try to restore from the back up.

  • Was unable to load data class info from sync services.  try again later.

    Since installing the latest version of itunes (11.1.5.5) whenever I have either mine or my wife's iphones (4 and 5c, both with the latest 7.1.1) turned on and I start iTunes, I receive the error message saying that itunes was unable to load data class info from sync services.  try again later.
    If I leave the phones turned off and open iTunes, I am able to sync my old ipod so it appears to be an issue with the software on the phones? 
    I'm just not sure where to start.  I've made sure that itunes has the latest version and no more updates are available.
    Thanks in advance,
    jamey8420

    this is on a windows 7 machine, btw.

  • When I connect my iphone4s to itunes on  my laptop I get this error...itunes was unable to load data class info from sync serv

    When I connect my iphone4s to itunes on  my laptop I get this error...itunes was unable to load data class info from sync serv

    In the course of your troubleshooting to date, have you worked through the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • TS3297 I recently started my apple I'd account and used my wife's bank card for payment info. I then loaded $75 from iTunes gift cards on the account. I was able to make in app purchases, now its telling me to contact iTunes Store support to complete now?

    I recently started my apple I'd account and used my wife's bank card for payment info. I then loaded $75 from iTunes gift cards on the account. I was able to make in app purchases, now its telling me to contact iTunes Store support to complete now? Help

    Do what it told you to do.
    Contact itunes support
    http://www.apple.com/support/itunes/contact/

  • HT201303 How do i delete my credit card info from i tunes and still down load stuff??

    How do i delete my credit card info from i tunes and still down load stuff??

    I think this issue has already been resolved in other discussions, please review Apple Discussions more carefully before you start a new discussion. This makes it easier for people to find the "resolved" discussions when searching for the anwers, like you are.
    But I'll still give you some info.
    I would suggest that you sign into your iTunes Store account using a computer as mobile devices can sometimes not update the info on your iTunes Store account(all based on connection and some security features on your account). Once you sign in, click the arrow next to your email address in the upper right corner of the screen and then click "Account". In the Apple ID summary, you can click edit in the payment section and then you need to click "None" that appears. Try these steps:
    click this link:
    https://phobos.apple.com/accountSummary
    (If you are not already signed in, you will need to enter your iTunes Store account name and password and then click the Account Info button to sign in.)
    The Apple Account Information page will appear. On this page, click the Edit Payment Information button, which is the second button from the top.
    On the Edit Payment Information page, select "None" from the list of credit card types. This will delete your billing information.
    Be sure to click the Done button at the bottom of the page to save your changes.
    Please note: you cant remove your credit card if have an outstanding balance without providing a new credit card or iTunes Store Gift Card(needs to process all payments before you can remove a credit card). Also, any active allowances or subscrtiptions(i think) will not allow the credit card to be removed.
    Some people are not given the option to remove their credit card. This indicates a billing issue with your account. Email iTunes Store Support for assitance, but I would make sure you havn't used the iTunes Store account for a while(week) and then try again.
    All Apple ID info is private, so only the accoutn owner can edit the information. I suggest that you keep trying and trying after restarting your computer and many sign in and sign outs before you give up.
    _W_W_W_._I_N_F_O_W_A_R_S_._C_O_M_

  • I just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password 9which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    i just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password (which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    I assume that you don't have the installation discs, so:
    1. Reboot
    2. Hold command + s key down after you hear the chime.
    3. When you get a text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
    (Type these commands very carefully)
    mount -uw /
    rm /var/db/.AppleSetupDone
    shutdown -h now
    4. You will go through the setup process again, create a new admin account, login to it and then change your existing account password or whatever else you need to do. You can delete the account you made in this process, or not.

Maybe you are looking for

  • Saving Sort Field Selection

    When I open itunes I select the artist I wish to listen to, (I'm using grid view, btw) and then browse that artist's albums. However, every single time I open itunes, I must click the "album by year" column header to resort it that way. It defaults b

  • Developer iphone 5 was needed to be reactivated just recently, i type my itunes account but nothing happens. What do i do?

    I am still on beta ios 7 and it was just today that my phone restarted and need activation, i am not able to restore because session is not available.

  • Urgent! 500 internal server error

    Good afternoon, When i run other interactive forms , it show successfully on the adobe forms however, when i run my project , it show : <b>500   Internal Server Error Failed to process request. Please contact your system administrator. Error Summary

  • Flash crash Runaround

    I was told by Adobe there wasn't any help for "free" (Flash Player) products. Explaining that my company was a paid user of other Adobe products i.e. Dreamweaver, got me transferred to Tech Support who claimed there weren't any known Flash crash issu

  • ThinkVantage Productivity Center will not open - T61, Windows XP

    I cannot get the ThinkVantage Productivity Center to open; specifically Rescue and Recovery. It has worked in the past and I have no idea what changed. Windows updates are automatically installed onto my computer. It appears that the relevant procese