Viewing a BLOB Data (Including Compressed Data) in Classic Report APEX 3.2

Hi All,
I have a table with a BLOB field.
That blob field is containing image with .tiff format.
I need to display those images in APEX 3.2 Classic Report.
Am able to achieve this by following the instructions in the below link.
http://st-curriculum.oracle.com/obe/db/apex/r31/apex31nf/apex31blob.htm#t4
Now my problem is, Some of the image in my table is in compressed format.
So those images are not displaying in the report, rather it is giving a message called 'No Preview Available'.
How can i extract those images and display in the Classic Report.
Please help me to achieve this.
Thanks & Regards,
Sakthi.

What kind of compression are we talking about here ?
<li>If its some kind of native image compression methods, then you could try the ORDImage utlity, here's a thread which discusses that : {thread:id=1048248}
If its compressed using zip or some file compression utility, you may need to load the java code(into the DB) that can uncompress it for you and then call it from procedure which then uncompress'es it(using java class) and then send it back as an image(programmatic way way of showing images in apex).
There posts should be of assistance
<li>Extract XML from docx . Forget the post title , this post has some code which uncompresses a zip file in the database(ignore the rest of the post, if irrelevant).
<li>Another posting about the same requirement, but with code for unzipping which you can adapt
<li>If you are not in a hurry, this Oracle-Sun Java documentation explains the whole process of compression/uncompression with code that you can process within the database(from PLSQL using java wrapper)
<li>The simplest is the PLSQL Package UTL_COMPRESS utility (also ) , which wouldn't need any extra coding for compressing/uncompressing binary data.this<a/>) , which wouldn't need any extra coding for compressing/uncompressing binary data.

Similar Messages

  • How to PRINT DATA in classical report when ever execute

    Hi,
    All ABAP experts,
         I am updating PM work order in IW32 by using BADI, with addition to success or error log i need to display data in basic list and also system has to print that data automatically by using system's default printer. User can not press print button in basic list because sometimes this program will schedule in background, due to this user wants see upload results in a print out.
             I don’t know how to write logic to get output like this. Please can anyone share how to write logic for this issue. 
    Before posting this issue i search in forms but I didn’t get appropriate solution.
    Thanks in advance and any sort of help will appreciate highly.

    Hi,
    Try with this piece of code
    Declaration of local constants
      CONSTANTS :  lc_paart LIKE sy-paart VALUE 'X_65_132',  " Paper Format
                   lc_locl  TYPE sypdest VALUE 'LOCL'.       " Destination
        MOVE 'X' TO v_print.
    Setup the Print Parmaters
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          authority              = space
          immediately            = v_print
          new_list_id            = c_x
          no_dialog              = c_x
          user                   = sy-uname
        IMPORTING
          out_parameters         = v_print_parms
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
      IF sy-subrc NE 0.
        CLEAR : v_print_parms.
      ENDIF.
    The printer destination has to be  set up
      IF v_print_parms-pdest = space.
        v_print_parms-pdest = lc_locl.
      ENDIF.
    Explicitly set line width, and output format so that
    the PDF conversion comes out OK
      v_print_parms-linsz = c_linsz.
      v_print_parms-paart = lc_paart.
    Regards,
    nagaraj

  • Viewing BLOB Data in a Form

    I have created viewing BLOB Data in a Report now I need to Viewing BLOB in a form how to
    This is one of the link I have used. Are their other solutions.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31blob.htm#t4

    I still not working do you have more information?

  • Key figure data in BEx report

    Hi,
    We are viewing some of the Key figure data of a particular report as ".", "$21.99MIN" etc, where $21.99 is the original value. When we click on the excel sheet cell and view in the formula bar, data is showing $21.99 correctly. But it is appearing as "$21.99MIN". In some places just"." is appearing where data can be seen in the formula bar.
    Tried, converting to Formula option, with which we can see the numbers but as usual it is behaving as a normal excel sheet after applying the function.
    Please suggest how to view the correct data for the report.
    Regards

    Hi,
    Thanks for the reply.
    It is a direct key figure. Two key figures in the query are displayed like this, while other KFs are displating the values as it is. Also i checked the data in Multi provider, BEx definition of the info object etc, there is no problem.
    Regards

  • Defining and Viewing BLOB Data in Oracle Application Express 3.2

    Hello All,
    There is a nice tutorial for working with images in Application Express 3.1 entitled "Defining and Viewing BLOB Data in Oracle Application Express 3.1". I have 3.2 and I am finding that I can't follow this tutorial... Is there any similar how to for 3.2?
    Thank you,
    Daniel

    Hi,
    I have just gone through the first steps in my OTN workspace app, and I do get the Implementation option (showing Interactive or Classic). In fact, my page at this point matches exactly the image shown in the tutorial.
    My OTN workspace app uses Apex version 3.2. The Interactive reports are relatively new, so older versions of Apex would not have this option. But you say that you are using version 3.2? If you just try to create a report page on, say, EMP, do you get the option to select Interactive or Classic?
    Andy

  • Problem providing download link for BLOB data in apex report

    Hi,
    I am trying to create a report on a table with BLOB data so that the report displays a "download" link for the BLOB data. I am trying to give users the ability to download files from a website.
    I have been following the instructions in OBE "Defining and Viewing BLOB Data in Oracle Application Express 3.1".
    In the report, for the BLOB column, I have specified values for the following fields in Report Attributes->Column Formatting->Number/Date Format->BLOB Download Format Mask:
    BLOB Table
    BLOB Column
    Primary Key Column 1
    MIME Type Column
    Filename Column
    BLOB Last Updated Column
    However, when I run the report, I get the following error, even thought there is data loaded into the table:
    report error:
    ORA-01403: no data found
    When I remove the BLOB Download Format Mask information for the BLOB column, then the data displays in the report, but without the "download" link for the BLOB data (which is expected):
    E.g.
    Title Author Created BLOB_CONTENT
    Siebel & RAC Best Practices     Erik.Peterson     17-SEP-08     [datatype]
    Siebel Grid Case Studies     Mark.MacDonald     17-SEP-08     [datatype]
    Siebel CRM Applications protected by Oracle Clusterware     Kelly.Tan     17-SEP-08 [datatype]
    Oracle Grid: The Optimal Platform for Siebel Solutions Mark.MacDonald 17-SEP-08     [datatype]
    Any ideas why I'm seeing the ORA_01403 when I specify the BLOB Download Format Mask?
    Edited by: user716599 on Sep 18, 2008 12:31 AM

    Good morning,
    Here is how I have solved this problem.
    1. The select statement in the sql for the report should not include the BLOB column. I decided to select only 2 columns, the column that has the key and the column with the filename.
    2. On the first column ( the primary key ) I put in the format statement that was simply DOWNLOAD:TABLENAME:BLOB_COLUMN:PRIMARY_KEY
    This works. I believe that the Oracle error I was getting was because I was trying to apply this format statement to the actual BLOB column.
    So, it appears that you can use any of the columns in the report to hold the DOWNLOAD format statement since in the format statement, you are defining the BLOB table, BLOB column and the primary key into that column.
    Hope this helps,
    Don.

  • URGENT - BLOB data transfer

    Hi:
    I have an Apex application that includes a couple of standard reports that display BLOB columns as images.
    I copied the blob table to the new database via a database link using insert into <remote table> select * from <local table>. The data was transferred and in SQL Developer I can view the images from the BLOB column.
    However, the newly deployed apex application shows the report but not the images. This is true for all of the reports theat display images.
    Is there a problem with transferring the BLOB data via the DB link. Must I transfer the data another way?
    Please help. This is very urgent.
    Regards,
    Bruce

    Hi:
    Thanks for your reply.
    My query for the standard report has used the following to display the image:
    , '<img style="border: 4px solid #CCC; -moz-border-radius: 4px; -webkit-border-radius: 4px;" '||
    'src="'||
    apex_util.get_blob_file_src('P90_PRODUCT_IMAGE',i.image_id)||
    '" height="25" width="35" alt="Product Image" title="Product Image" />'
    detail_img
    But this is snow not working in the new application.
    Interestingly, I also have an IR report that does use the data/formal to set the BLOB column formatting, but it too is not working in the new application.
    I even tried to upload a BLOB in the new application but still it does not display in the report.
    Suggestions.
    Thanks
    Bruce

  • Re: Problem providing download link for BLOB data in apex report

    Hi Don,
    Your solution below worked but in the download option i only see save but not open for PDf file in the blob. Please let me know if you have any suggestion to achieve it
    Thanks
    Jo
    Problem providing download link for BLOB data in apex report 
    591953 Nov 19, 2008 1:55 PM (in response to 660436)
    Currently Being Moderated
    Good morning,
    Here is how I have solved this problem.
    1. The select statement in the sql for the report should not include the BLOB column. I decided to select only 2 columns, the column that has the key and the column with the filename.
    2. On the first column ( the primary key ) I put in the format statement that was simply DOWNLOAD:TABLENAME:BLOB_COLUMN:PRIMARY_KEY
    This works. I believe that the Oracle error I was getting was because I was trying to apply this format statement to the actual BLOB column.
    So, it appears that you can use any of the columns in the report to hold the DOWNLOAD format statement since in the format statement, you are defining the BLOB table, BLOB column and the primary key into that column.
    Hope this helps,
    Don.

    Branched out from a years old thread.
    user3003326 Don't post to old threads, please.

  • How to store and use the BLOB data in Oracle 11G?

    Recentlly,when I tested the Blob data in Oracle11G ,I found that there were too many differences between the SQL
    Server and the Orcale on the capabilities.In Orcale ,I created the table like this:
    create table point
    xid number(10) primary key,
    North number(30,15) default null,
    West number(30,15) default null,
    South number(30,15) default null,
    East number(30,15) default null,
    Area number(30,15) default null,
    Len number(30,15) default null,
    Geometry BLOB default null
    organization index overflow
    tablespace "Tab1"
    lob (Geometry) store as securefile
    tablespace "Tab1"
    enable storeage in row
    chunk 4096
    pctversion 20
    nocache
    no logging
    compress high
    and I stored 10248 rows in this table,
    then ,I used "select geometry from point where xid > ? and xid < ?" as the testing SQL langauage in Java and the
    programme runed once per 5000 pieces of memory.
    the total time used in Orcale is twice more than that in SQLServer.In my Application programs, once the same
    orders runed,their differences were three times and more.As usually,the capability of Orcale is more strongger
    than the SQLServer.Why?

    select geometry from point where xid > ? and xid < ?"Does an index on XID exist?
    Are statistics current for table & indexes?

  • BLOB data and SQL Loader

    Has any one used SQL Loader for BLOB data? I would think you can only use it for text type data.
    Thanks,
    Vic

    If each blob is in a separate file, then you should be able to use LOBFILES to load them. Each row in the data file would need to have the name of the file containing the blob for that row. File ulcase9.ctl in the demo directory shows an example of using LOBFILES to load a lob column.
    If you want the blob in the data file, then the data file needs to use types that have include length information in then, such as VARRAW, LONG VARRAW or VARRAWC. Also, the records for the data files cannot be terminated by a character string or newline. That's because the blob data might contain the character string or newline in the middle of its data. Instead, you would need to use the VAR record type.

  • About get blob data where test web services in odi

    Hello,
    when i test a web service(data include blob column ) in odi ,i get below errors ,does it means my webservices is not correct, or does blob data get function can't be test in odi , for i can delete row in the table ,just can't get data from the table by web service in odi .
    <getTBlobRequest>
    <TBlob>
    <ID>1</ID>
    </TBlob>
    </getTBlobRequest>
    com.sunopsis.wsinvocation.SnpsWSInvocationException: oracle.sql.BLOB
         at com.sunopsis.wsinvocation.client.a.a.d.requestReply(d.java)
         at com.sunopsis.graphical.wsclient.f.b(f.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.sql.BLOB
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1515)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
         at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
         at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:433)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1792)
         at com.sunopsis.wsinvocation.client.a.a.d.a(d.java)
         ... 8 more
    Caused by:
    AxisFault
    faultCode: {http://ws.apache.org/namespaces/axis2}Server
    faultSubcode:
    faultString: oracle.sql.BLOB
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}stackTrace:oracle.sql.BLOB
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1515)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
         at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
         at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:433)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1792)
         at com.sunopsis.wsinvocation.client.a.a.d.a(d.java)
         at com.sunopsis.wsinvocation.client.a.a.d.requestReply(d.java)
         at com.sunopsis.graphical.wsclient.f.b(f.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Thread.java:595)
         {http://xml.apache.org/axis/}hostname:xpone
    oracle.sql.BLOB
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1515)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.content(Parser2.java:1766)
         at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1494)
         at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
         at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
         at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:433)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1792)
         at com.sunopsis.wsinvocation.client.a.a.d.a(d.java)
         at com.sunopsis.wsinvocation.client.a.a.d.requestReply(d.java)
         at com.sunopsis.graphical.wsclient.f.b(f.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Thread.java:595)
    Edited by: user778685 on 2009-7-5 下午8:27
    Edited by: user778685 on 2009-7-5 下午8:29
    Edited by: user778685 on 2009-7-6 下午11:30
    Edited by: user778685 on 2009-7-8 下午7:28

    Hi,
    As this looks like a Microsoft / C# problem, you may not get much help from this forum, which primary focuses on the Oracle Web Services stacks.
    You may want to try to post this question to .NET dedicated forum on MSDN. See sites like http://www.gotdotnet.com for example.
    On the Oracle forums, you may have better luck in one of the "Windows and .NET" forums.
    You should also try to test the private method -- SearchProduct -- first, outside the Web Service and test your Web Service with a static result, so that you can narrow down where the issue is.
    Hope it helps,
    -Eric

  • Viewing photos in date/time order?

    I am trying to organise and view my photos in chronological order in Aperture (& iPhoto).
    I have a mixture of GMT, GMT+1 and GMT+4 photos and the view set to "Date" (rather than Version Name or File Name, for example).
    Although the time looks correct on the photos they are not displaying in order, presumably because of the +GMT variable.
    How do manage the photos such that they can be seen in chronological order?
    Thank you

    I expected Aperture to import the date/time stamp as it is on the picture, not the local time zone whenever imported.
    Aperture does, but the EXIF date/time stamp does not necessarily have a time zone attached, even if the camera knows the time zone. That is why Aperture will default to the current system time zone.
    You can check, which time zones Aperture is using for your dates, if you quit Aperture and change the date&time formats in the System Preferences to include the time zone.
    System Preferences > Language & Region , click the "Advanced" button, open the "Times" tab. Drag a Time Zone  item to the Medium and Long Time Format like this:
    When you relaunch Aperture it should now append the Time Zone to any "Date" from the "EXIF" meta data, if you use a metadata preset, that includes the EXIF "Date" field.

  • How to view forums by date, not "Trending Questions"

    I used to be able to view forums by date, now they appear in order of "Trending Questions"  so that a discussion that has been inactive for three months now appears before a discussion from a day ago.
    Is there a way to get back to the way it should be (by date), or must I live with this poorly conceived "upgrade?" I searched in my preferences and profile, but can't find a way to change this.

    That's completely counter to the ethos behind the forums. Our goal is to build up as many previously-answered questions as possible, so as to reduce the need to ask the same thing over and over (which is immensely annoying for those who have to keep answering it!). In a perfect world, searching via Google, Community Help or the forums tool itself should always bring up an answer to any customer's questions regarding the use of Adobe products.
    For info, the current database size in Jive is not an issue in terms of the user experience - the SQL queries run by a typical user/page session execute many times faster than the data itself can be sent across the networks.
    Phillip Jones wrote:
    Yes I do. I think it’s a dumb idea designed by someone twiddling their thumbs with nothing to do. If there is no activity on a Subject within two weeks it should moved to a Archive. Then deleted.  the less stuff you have to deal with the faster Forums will be. If the subject needs to be covered again bring it up again.
    Some postscripts for previous replies in this thread:
    "Trending" was taken from Twitter, where it refers to hashtags with high levels of recent use.
    The "Trending" pod on the overview page for a discussions space is not identical to the first items in the 'discussions' tab, as it includes activity on the other content panels (documents, ideas, polls, etc.) where those are present. If we sent everyone to the discussions tab, users would never know there's a new document posted (e.g. an FAQ) and would have no way to reach it.
    If you prefer a different layout of your set of regular forums, try the Personalized Homepage feature (using the "Your View" button on the forums homepage).

  • Append a text line on blob data.

    Hi All,
    I need append a text line on blob data.
    I haven't found prosper example or guide yet.
    Following is example blob data which i should handle with.
    Date: Thu, 29 Oct 2009 18:36:56 +0900 (KST)
    From: IBM
    To: IBM
    Subject: JavaMail Attachment
    Mime-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_10_1177830964.1256809016187"
    ------=_Part_10_1177830964.1256809016187
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Ideas
    ------=_Part_10_1177830964.1256809016187--
    and I should add a new line on head of above blob data like this,
    Message-ID: <1631215930.1256809016203.JavaMail.SYSTEM@ibm-demo>
    so what i want is every blob data which doesn't have Message-ID line, update with random msg id.
    please give me an tip or sample for this.
    Thanks in advance,
    Beomwoo.

    I have to develop some program which correct abnormal email data of Oracle Collaboration Suite mail 10g.
    OCS store the mail body into a blob column named as body on es_body table.
    Normal mail body have to include Message id header information like following.
    Message-ID: <[email protected]>
    Date: Sat, 31 Oct 2009 19:48:04 +0900 (KST)
    From: bbuser1 kim <[email protected]>
    To: bbuser1 kim <[email protected]>
    Subject: 111111111111111
    Mime-Version: 1.0
    Content-Type: text/plain;charset=US-ASCII
    Content-Transfer-Encoding: 7bit
    Accept-Language: en-US
    X-Mailer: Oracle Collaboration Suite Web Access 10.1.2.4.3
    When a message body doesn't have the message id line on first line.
    I want add random message id on first line.
    So, What i want exactly is how to update blob column data with adding a line like 'Message-ID: <[email protected]>'.
    Any idea?
    Thanks in advance,
    Beomwoo.

  • Can not view 24 hours data in Websphere performance page

    We configured EM 10.2.0.5 to monitor Websphere 6.1 on AIX.
    Now we can see current data in the performance page.
    But when we switch to 24 hours view, there is not any data shown in the page.
    Does EM 10.2.0.5 support viewing Websphere historical data?

    This issue is solved.
    The OMR parameter job_queue_processes is set to 0.
    It should be 10 or above.

Maybe you are looking for

  • I can't update my ipod

    whenever i connect my ipod to my computer, it just updates my calendar, not my music. nothing else seems to be wrong.

  • Test Driven Development...

    Hi, I'd like to hear some pro's and con's about this Test Driven Development methodology. Have anyone of you in this forum been using this technique for your unit tesing? If so, please share the experiences. http://www.fusionauthority.com/Techniques/

  • Interface problem

    Hi All I m implementing Idoc to Xml while tesing Message Mapping n Interface Mapping there r no errors but while testing the configuration scenario there is error in Interface Determination but they r not displaying the Log. While mess moni Message I

  • When testing podcast subscriptions, should the album artwork show up?

    I am trying to setup a podcast and, per the podcast guide, I am testing the subscription before submitting to the iTunes store. All of the episodes are showing and work fine, the only problem is that the album artwork is not appearing. Does the artwo

  • Migrate Business Role

    Dear Experts I have an inquiry about "Business Role" I'd like to migrate the role setting from my tenant to the other tenant. But, it is not possible to migrate it as far as I know. If you know the workaround about this matter, please give me some ad