BLOB Destination

Hello there, I have a problem with saving a report, generated by oracle report at the run time, in table BLOB column.
I'm using Oracle 10g forms/reports and BLOBDestination.jar as a plugin.
I followed all necessary steps to setup my development machine, 'Storing your report in the database.pdf', but give me 'REP-50159: Executed successfully but there were some errors when distribute the output' and nothing saved in db table
This is URL that I'm using
http://machine_name:8889/reports/rwservlet?report=report_name.rdf&userid=username/password@DBName&DESTYPE=blobdestination&DESFORMAT=PDF&DESNAME=http://username:password@DBName:1521/MY_SID/My_Table_Name/My_Column_Name/My_PK_Coulmn_Name/My_PK_Value/My_Column_Report_FILENAME
Any help or thought, much appreciated.

I got the problem resolved by myself. I looked at the "showjobs" and found that the blobdestination output type was actually recognized. All the error messages (when running the url) had nothing to deal with the new output type. Here is the trick.
In addition to specifying the DESNAME=http://username:password@host:port/sid for the output destination, you also need to specify the userid userid=username/password@database_name in the same url in order for the report to run.
Thanks.
Andy

Similar Messages

  • Problem with loading file to BLOB column

    I am attempting to load up a .gif gile into a BLOB column in my database.
    I created the directory as below:
    ===
    SQL> create or replace directory example_lob_dir as 'C:\temp';
    Directory created.
    ===
    Next I created the following procedure to load the file into the BLOB column:
    ====
    create or replace procedure load_blob as
    dest_loc blob; -- destination location
    src_loc bfile := bfilename('example_lob_dir', 'example.gif'); -- source location
    begin
    -- Insert intial BLOB value
    insert into test_blob(id, file_name, image)
    values (1, 'test.gif', empty_blob())
    returning image into dest_loc;
    -- Open the source BFILE
    dbms_lob.open(src_loc, dbms_lob.lob_readonly);
    -- Open the LOB (optional)
    dbms_lob.open(dest_loc, dbms_lob.lob_readwrite);
    -- Load the file
    dbms_lob.loadfromfile(
    dest_lob => dest_loc,
    src_lob => src_loc,
    amount => dbms_lob.getlength(src_loc));
    -- Close LOBs
    dbms_lob.close(dest_loc);
    dbms_lob.close(src_loc);
    commit;
    end load_blob;
    ===
    The file is definitely in the C:\temp folder and is named correctly. I am working in WinXP with Oracle10gXE and both server and client are on the same machine.
    The procedure compiles without any errors but when I attempt to run it I get an error message as below:
    ==
    SQL> exec load_blob
    BEGIN load_blob; END;
    ERROR at line 1:
    ORA-22285: non-existent directory or file for FILEOPEN operation
    ORA-06512: at "SYS.DBMS_LOB", line 716
    ORA-06512: at "FTM.LOAD_BLOB", line 14
    ORA-06512: at line 1
    ==
    Any help would be much appreciated.

    When you create objects on the database they are stored in the data dictionary by default in UPPER case.
    So in this line:
    src_loc bfile := bfilename('example_lob_dir', 'example.gif'); -- source location
    you need to reference the name of the directory object in upper case. e.g.
    src_loc bfile := bfilename('EXAMPLE_LOB_DIR', 'example.gif'); -- source location
    ;)

  • BlobDestination

    I have deployed the example from this link for "BLOB Destination"
    http://www.oracle.com/technology/products/reports/pluginxchange/index.html
    I have successfully created blob.. but the problem is in the Job Queue, when I go and see Destinatation name, I can see username and password and all the sensative information which I want to hide... If anyone worked on this please suggesset solution.
    Thanks
    Jignesh

    It's Sounds the Privilege issue..
    check these
    - What user is the user connected as ?
    - What is the SQL statement being issued ?
    - Who owns the objects referenced in the statement ?
    Various operations required SELECT as WELL AS INSERT privilege to work

  • Automatically save a created PDF

    Hi,
    I am running a report which will give output as a PDF. I would like to save this automatically to Database with our user intervention. Please let me know how to achive this.
    Thanks
    Venkat Ch

    Hello,
    You can use the plugin "BLOB Destination" :
    http://www.oracle.com/technology/products/reports/pluginxchange/index.html
    This destination sends the report output to the database as a BLOB (Binary Large Object) datatype. This sample is tested with Oracle Reports 9i, Oracle Reports 10g (9.0.4), and Oracle Reports 10g Release 2 (10.1.2).
    Regards

  • How do I identify the destination location in the blob service

    I'm preparing the hard drive for an import job (Windows Azure Backup) but for the life of me, I can't figure out what the destination blob is as referenced in the instructions at http://msdn.microsoft.com/en-us/library/dn529089.aspx
    I think I've laid all of the groundwork, but this has me stumped. (I'm sure it's been staring me in the face...I just don't see it.)

    Destination blob or virtual directory is the location where you would like your data to be available at the end of import. This should be a blob name if the source is a file and a virtual directory path if the source is a directory. Samples on the linked
    msdn page should help too. Couple of examples below as quick reference:
    Say you want to import your local file c:\data\test.mov to a blob in your storage account
    https://yourstorageacount.blob.core.windows.net/movies/test.mov, you would run a command line similar to the below:
    WAImportExport.exe PrepImport /j:drive1.jrn /id:movies /sk:XXXXXX /t:x /format /encrypt /srcfile:c:\data\test.mov /dstblob:movies/test.mov
    Note the destination blob path starts with the container name (“movies”).
    If instead of importing a single file, you want to import all files in your local directory
    c:\data\ to blobs in the container https://yourstorageacount.blob.core.windows.net/movies/, then use the following command:
    WAImportExport.exe PrepImport /j:drive1.jrn /id:movies /sk:XXXXXX /t:x /format /encrypt /srcdir:c:\data /dstdir:movies/
                    With this,
    c:\data\test.mov will be still imported to https://yourstorageacount.blob.core.windows.net/movies/test.mov;
    another file c:\data\another.mov will be imported to
    https://yourstorageacount.blob.core.windows.net/movies/another.mov

  • Error while importing a table with BLOB column

    Hi,
    I am having a table with BLOB column. When I export such a table it gets exported correctly, but when I import the same in different schema having different tablespace it throws error
    IMP-00017: following statement failed with ORACLE error 959:
    "CREATE TABLE "CMM_PARTY_DOC" ("PDOC_DOC_ID" VARCHAR2(10), "PDOC_PTY_ID" VAR"
    "CHAR2(10), "PDOC_DOCDTL_ID" VARCHAR2(10), "PDOC_DOC_DESC" VARCHAR2(100), "P"
    "DOC_DOC_DTL_DESC" VARCHAR2(100), "PDOC_RCVD_YN" VARCHAR2(1), "PDOC_UPLOAD_D"
    "ATA" BLOB, "PDOC_UPD_USER" VARCHAR2(10), "PDOC_UPD_DATE" DATE, "PDOC_CRE_US"
    "ER" VARCHAR2(10) NOT NULL ENABLE, "PDOC_CRE_DATE" DATE NOT NULL ENABLE) PC"
    "TFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS"
    " 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TS_AGIMSAPPOLOLIVE030"
    "4" LOGGING NOCOMPRESS LOB ("PDOC_UPLOAD_DATA") STORE AS (TABLESPACE "TS_AG"
    "IMSAPPOLOLIVE0304" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE L"
    "OGGING STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEF"
    "AULT))"
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'TS_AGIMSAPPOLOLIVE0304' does not exist
    I used the import command as follows :
    imp <user/pwd@conn> file=<dmpfile.dmp> fromuser=<fromuser> touser=<touser> log=<logfile.log>
    What can I do so that this table gets imported correctly?
    Also tell me "whether the BLOB is stored in different tablespace than the default tablespace of the user?"
    Thanks in advance.

    Hello,
    U can either
    1) create a tablespace with the same name in destination where you are trying to import.
    2) get the ddl of the table, modify the tablespace name to reflect the existing tablespace name in destination and run the ddl in the destination database, and run your import command with option ignore=y--> which will ignore all the create errors.
    Regards,
    Vinay

  • How to create a dynamic hyperlink which point to a BLOB column

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    This forum is for the SQLDeveloper tool. You might get better responses on the reports forum Reports

  • How to create dynamic link which point to a BLOB column in report

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    What exactly is the error messag u are getting ?
    If u have a hyperlink which refers to www.oracle.com in ur pdf, does it work ?
    I think simple URL from PDF will not retrieve any data from the oracle database since it has to make some database connection.
    My suggestion would be whenever request for employee information comes,
    extract that picture from blob and put it a virtual folder in the application server.
    And from the pdf/report access the URL with reference to the picture...
    Rajesh Alex

  • Reading the data from BLOB column

    HI,
    I have a table with following structure
    Test_Mail(Attachment BLOB,Attachmentname varchar2(255),FileSize number)
    The data in the table is like
    Attachment|Attachmentname|FileSize
    BLOB|test.txt|1236
    I wants to read the data from the BLOB attachment in to new file.
    can any one help me in doing this with plsql??
    Thanks in advance,
    Balaji tk.
    Edited by: Balaji.tk on Jan 9, 2011 9:28 PM

    May be something like this ?
    DECLARE
       l_file       UTL_FILE.FILE_TYPE;
       l_buffer     RAW (32767);
       l_amount     BINARY_INTEGER     := 32767;
       l_pos        INTEGER            := 1;
       l_blob       BLOB;
       l_blob_len   INTEGER;
    BEGIN
    -- Open the destination file.
       l_file := UTL_FILE.FOPEN ('TEST_DIR', v_attachment_name, 'wb');
       --This v_attachment_name can be selected from your table.
    -- Get LOB locator
    FOR rec IN (
    SELECT attachment   l_blob
          FROM test_mail
         --Your where condition to find the row.      
       --AND ROWNUM =1
    LOOP
       l_blob_len := DBMS_LOB.getlength (rec.l_blob);
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
       WHILE l_pos < l_blob_len
       LOOP
          DBMS_LOB.READ (rec.l_blob, l_amount, l_pos, l_buffer);
          UTL_FILE.put_raw (l_file, l_buffer, FALSE);
          l_pos := l_pos + l_amount;
       END LOOP;
      commit;
    END LOOP;
    -- Close the file.
       UTL_FILE.FCLOSE (l_file);
    EXCEPTION
       WHEN OTHERS
       THEN
    -- Close the file if something goes wrong.
          IF UTL_FILE.IS_OPEN (l_file)
          THEN
             UTL_FILE.FCLOSE (l_file);
          END IF;
          RAISE;
    END;

  • Oracle error ORA-01461when trying to insert into an ORACLE BLOB field

    I am getting Oracle error ‘ORA-01461: can bind a LONG value only  for insert into a LONG column' when trying to insert into an ORACLE BLOB field. The error occurs when trying to insert a large BLOB (JPG), but does not occur when inserting a small (<1K) picture BLOB.(JPG). Any ideas?
    BTW, when using a SQL Server datasource using the same code.... everything works with no problems.
    ORACLE version is 11.2.0.1
    The ORACLE datasource is JDBC using Oracle's JDBC driver ojdbc6.jar v11.2.0.1 (I also have tried ojdbc5.jar v11.2.0.1; ojdbc5.jar v11.2.0.4; and ojdbc6.jar v11.2.0.4 with the same error result.)
    Here is my code:
    <cfset file_mime = Lcase(Right(postedXMLRoot.objname.XmlText, 3))>
    <cfif file_mime EQ 'jpg'><cfset file_mime = 'jpeg'></cfif>
    <cfset file_mime = 'data:image/' & file_mime & ';base64,'>
    <cfset image64 = ImageReadBase64("#file_mime##postedXMLRoot.objbase64.XmlText#")>
    <cfset ramfile = "ram://" & postedXMLRoot.objname.XmlText>
    <cfimage action="write" source="#image64#" destination="#ramfile#" overwrite="true">
    <cffile action="readbinary" file="#ramfile#" variable="image_bin">
    <cffile action="delete" file="#ramfile#">
    <cfquery name="InsertImage" datasource="#datasource#">
    INSERT INTO test_images
    image_blob
    SELECT
    <cfqueryparam value="#image_bin#" cfsqltype="CF_SQL_BLOB">
    FROM          dual
    </cfquery>

    Can't you use "alter index <shema.spatial_index_name> rebuild ONLINE" ? Thanks. I could switch to "rebuild ONLINE" and see if that helps. Are there any potential adverse effects going forward, e.g. significantly longer rebuild than not using the ONLINE keyword, etc? Also wondering if spatial index operations (index type = DOMAIN) obey all the typical things you'd expect with "regular" indexes, e.g. B-TREE, etc.

  • Problem importing a table with blob's

    hi all, I'm facing the following situation.
    Source DB : 10.2.0.3 (client's DB)
    Destination DB (mine): 10.2.0.4
    I've a dump file (traditional) of a particular schema.
    I'm running import (imp) to import on my DB.
    It runs fine until it reaches one particular table. This table has 6 colums, 3 of them are BLOB.
    This table has 260000 rows (checked with export log).
    When import reaches row 152352 it stops loading data, but import is still running.
    what can I do to get more information from this situation in order to solve this problem?
    Any suggestion will be appreciated!
    Thanks in advance.

    Pl identify the source and target OS versions. Are there any useful messages in the alert.log ? How long did the export take ? Rule of thumb states import will take twice as long. Have you tried expdp/impdp instead ? Also see the following -
    How To Diagnose And Troubleshoot Import Or Datapump Import Hung Scenarios          (Doc ID 795034.1)
    How To Find The Cause of a Hanging Import Session          (Doc ID 184842.1)
    Import is Slow or Hangs          (Doc ID 1037231.6)
    Export and Import of Table with LOB Columns (like CLOB and BLOB) has Slow Performance          (Doc ID 281461.1)
    HTH
    Srini

  • 404 error while accessing the blob in cdn

    Hi Team,
    I have a public container where I store my blob via code.
    I am able to access the item from the container via tha blob url. But when I try to access the blob via CDN I get the 404-Not found error.
    I have set up the CDN 3 days back.
    When I was using the Free trial it was working fine.But when I created the new strorage/container and CDN endpoint with my Visual Studio premium subscription I am getting this issue.
    The endpoint and the quertystring are enabled.Do I need to pay for CDN, I don't think this should be the case.
    Please help me out on this.
    My CDN endpoint is - http://az678809.vo.msecnd.net/
    Eg: My blob url - http://chiprocontainer.blob.core.windows.net/sitecorecontainer/Images/Destination/San%20Fran%20GG%20Bridge.jpg

    hi,
    How did you set your container permission as "public"?
    I suggest you could add this setting permission code into your container:
    CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");
    container.CreateIfNotExist();
    // Create a permission policy to set the public access setting for the container.
    BlobContainerPermissions containerPermissions = new BlobContainerPermissions();
    containerPermissions.PublicAccess = BlobContainerPublicAccessType.Container;
    //Set the permission policy on the container.
    container.SetPermissions(containerPermissions);
    About above code, I suggest you could refer to this docs(http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storage.blob.blobcontainerpublicaccesstype.aspx
    At the same time, I used the Fiddler and Azure Storage Explore to reproduce this issue:
    1. I create a container named "img" and upload an image
    2.And set the security property in Azure Storage Explore as Public  container. I could visit the CDN endpoint successfully.
    GET http://az678259.vo.msecnd.net/img/test/det/4.jpg HTTP/1.1
    Accept: text/html, application/xhtml+xml, */*
    Accept-Language: en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3
    User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
    Accept-Encoding: gzip, deflate, peerdist
    Host: az678259.vo.msecnd.net
    If-Modified-Since: Wed, 22 Oct 2014 05:32:35 GMT
    If-None-Match: 0x8D1BBD0B814C51A
    DNT: 1
    Connection: Keep-Alive
    Pragma: no-cache
    X-P2P-PeerDist: Version=1.1
    X-P2P-PeerDistEx: MinContentInformation=1.0, MaxContentInformation=1.0
    But I visit your CDN endpoints, I got the 404 error:
    GET http://az678809.vo.msecnd.net/sitecorecontainer/Images/Destination/San%20Fran%20GG%20Bridge.jpg HTTP/1.1
    Accept: text/html, application/xhtml+xml, */*
    Accept-Language: en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3
    User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
    Accept-Encoding: gzip, deflate, peerdist
    Host: az678809.vo.msecnd.net
    DNT: 1
    Connection: Keep-Alive
    X-P2P-PeerDist: Version=1.1
    After I changed the container permission, I could get the 404 error in my test container. So I suggest you could set the container permission firstly.
    Any questions about this issue, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Store report output to blob column

    Hi,
    I would like to know whether it is possible to execute a report built using Report 10G and store its output, e.g. PDF content, onto a blob column of a table directly? If it's possible, could anyone show me an example in achieving it. Thank you.
    Regards,
    John

    Navneet,
    Thanks for the sample. I've tried setting up this custom destination and I get the following error when trying to run a report.
    REP-50125: Caught exception: java.lang.NullPointerException
    The URL that I am using is as follows:
    http://server_name:port/reports/rwservlet?report=report_name.rdf&userid=username/password@tnsname_entry&destype=BLOBdestination&desformat=PDF&DESNAME=http://username/password@host_name:port/instance/table_name/document_column_name/primary_key_column_name/10/report_desc_column_name
    Any ideas on what I've done wrong?
    Thanks
    David

  • Help in my pl/sql from blob to a file

    i found the code here: http://www.oracle-base.com/articles/9i/ExportBlob9i.php but somehow i was confused by errors:
    CREATE OR REPLACE
    procedure sp_readBlob
    declare
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32767);
    l_amount BINARY_INTEGER := 32767;
    l_pos INTEGER := 1;
    l_blob BLOB;
    l_blob_len INTEGER;
    BEGIN
    -- Get LOB locator
    SELECT fileupload
    INTO l_blob
    FROM rsmaster
    WHERE rownum = 1;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- Open the destination file.
    l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer, TRUE);
    l_pos := l_pos + l_amount;
    END LOOP;
    -- Close the file.
    UTL_FILE.fclose(l_file);
    EXCEPTION
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE;
    END;
    Error(2,1): PLS-00103: Encountered the symbol "DECLARE" when expecting one of the following: ( ; is with authid as cluster compress order using compiled wrapped external deterministic parallel_enable pipelined
    Error(40): PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: begin case declare end exception exit for goto if loop mod null pragma raise return select update while with <an identifier> <a double-quoted delimited-identifier> <a bind variable> << close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge pipe
    thanks in advance!

    You haven't used the quoted code very well!
    That is an 'anonymous pl/sql block and uses the explicit DECLARE to define the area for declarations.
    You are using a named pl/sql procedure and do not require the explicit DECLARE.
    I think you must have miss-read the 'Create or replace Directory' line above.

  • Dbms_lob.getlength() returns different source and destination lengths

    I am fairly new to PL/SQL so maybe this is an obvious problem but here goes. I am updating a clob field with a text file ~5KB in size. The field updates fine (as far as I can tell). Before I update the field, I open the source file as a bfile and then inquire the length using dbms_lob.getlength(). I then update the clob field using dbms_lob.loadclobfromfile(). This seems to work fine. However, when I use dbms_lob.getlength() on the destination object returned by dbms_lob.loadclobfromfile(), I get a length 3 characters less than then the source object (5072 vs 5075). Both the source and destination offsets are set to 1.
    Probing on what documentation I could find, I found this at http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_lob.htm#i998484:
    "The length returned for a BFILE includes the EOF, if it exists. Any 0-byte or space filler in the LOB caused by previous ERASE or WRITE operations is also included in the length count. The length of an empty internal LOB is 0."
    I did not create the source file and I believe it is a Unix type file (because of the lack of CRs) and I am running on Windows 7. I am also using 11g Express. Could the use of a Unix-type file for a CLOB on a Windows system be causing this character count difference?
    Once I found this issue I can work around it. I just want to understand what is going on.
    Thanks to all who look at this.

    The EOF and the LF versus CR/LF could influence the count difference, yes.
    Another explain could possibly be character set conversions. The BFILE I believe counts bytes, a CLOB would count "characters" - so if the source happens to contain a few multibyte characters (UTF), then the byte count would be larger than the character count.
    To help you find the cause for your exact file, then I can suggest a couple of things you might do to explore the issue:
    <li>Load the file into a BLOB instead of a CLOB and see what getlength() returns for the BLOB. BLOBs would also do byte counts and not try to treat the source as text.
    <li>Save the CLOB back into the filesystem and compare the original file with the exported CLOB and check the differences with some filecompare tool.

Maybe you are looking for

  • Problem with Retrieving Parent records

    Hi I am facing some problem with Relation ship tables I am able to retrieve all child relation record by using Parent record id, but the other why around is not working that is I am unable to retrieve  all parent records by using a child record. Plea

  • B2B, Receiver Party missing after SP16 Upgrade

    Hi, we upgraded XI from SP9 to SP16. After upgrade to SP16 the scenario does not work properly anymore because the receiver party information is lost. In the receiver determination I've set 2 receivers 1) party 'test' and service 'testservice1' and 2

  • Accordion link issues IE

    Hi, I'm writing a site for work and I decided to use the spry accordion. I'm having an issue at the moment with the links in the accordion content divs when I have an overflow I have specified a height on the div and if the content takes up more than

  • Mac Mini as Print Server

    When I upgraded all the household computers to Snow Leopard, we lost the ability to communicate with our old LaserWriter 600/4 because Snow Leopard doesn't support AppleTalk. Who knew? A solution appeared when my father replaced his Mac Mini with a n

  • In my Finder window the Shared Section is missing

    Mac Pro 2007 Processor  2 x 3 GHz Dual-Core Intel Xeon Memory  6 GB 667 MHz DDR2 FB-DIMM Mac Lion OS X 10.7.5 In my Finder window the Shared Section is missing. Its even checked under Finder>Preferences>Sidebar. Do I need to edit something in my Libr