ORA-22275 Invalid lob locator when using CLOB from a view

Hi,
I am having problems when passing a CLOB from a "Union all" view to a function. I get an ORA-22275 error when trying to construct an XmlType from the CLOB and
the CLOB originates from a view. If the CLOB originates from a table, eveyting works fine. Here is the code, that reproduces the problem
CREATE TABLE testclob
    (field1                         CLOB)
-- insert some data
insert into testclob values ('<a/>');
-- Define a clob view over some tables
create or replace view v_testclob
(field1)
as
select field1 from testclob
union all
select field1 from testclob; -- in reallity I use different tables
-- Creat a functions that proceses the CLOB
CREATE OR REPLACE
function MyFunction(v_myClob clob) return VARCHAR2
IS
   myXML XMLTYPE;
BEGIN
  select xmltype(v_myClob) into myxml from dual; -- the view crashes ** HERE **
  -- code ommited
  return 'some data';
END;
-- Try to use the function:
-- Selecting from a table works OK
select myfunction(field1) from testclob;
-- Selecting from the view crashes
select myfunction(field1) from v_testclob;
Error: ORA-22275: invalid LOB locator specified ORA-22275: invalid LOB locator specified ORA-06512: at "D_TEST.MYFUNCTION", line 6
-- I using the following version:
select * from v$version;
-- Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production      
-- PL/SQL Release 9.2.0.1.0 - Production                           
-- CORE     9.2.0.1.0     Production                                       
-- TNS for 32-bit Windows: Version 9.2.0.1.0 - Production          
-- NLSRTL Version 9.2.0.1.0 - Production The only workaround I have found is to use substr
  select xmltype(dbms_lob.substr(v_myClob)) into myxml from dual; -- workaround.. but this mght trucnate my data.
What am I doing wrong?
Matej

You need to apply the latest patchset for your version of the database on your version of the operating system:
SQL> CREATE TABLE testclob
  2      (field1                         CLOB)
  3
SQL> /
Table created.
SQL>
SQL> -- insert some data
SQL> insert into testclob values ('<Data>Testing</Data>')
  2  /
1 row created.
SQL>
SQL> -- Define a clob view over some tables
SQL>
SQL> create or replace view v_testclob
  2  (field1)
  3  as
  4  select field1 from testclob
  5  union all
  6  select field1 from testclob
  7  /
View created.
SQL>
SQL> -- Creat a functions that proceses the CLOB
SQL>
SQL> CREATE OR REPLACE
  2  function MyFunction(v_myClob clob) return VARCHAR2
  3  IS
  4     myXML XMLTYPE;
  5  BEGIN
  6
  7    select xmltype(v_myClob) into myxml from dual; -- the view crashes ** HERE **
  8    -- code ommited
  9    return 'some data';
10  END;
11
12  /
Function created.
SQL> -- Try to use the function:
SQL> -- Selecting from a table works OK
SQL> select myfunction(field1) from testclob;
MYFUNCTION(FIELD1)
some data
SQL>
SQL>
SQL> -- Selecting from the view crashes
SQL> select myfunction(field1) from v_testclob;
MYFUNCTION(FIELD1)
some data
some data
SQL> disconnect
Disconnected from Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.7.0 - Production
SQL>

Similar Messages

  • ORA-22275 :invalid LOB locator specified error while loading BLOBs/CLOBS.

    Hello All,
    I am trying to load BLOB/CLOB data from a client oracle DB to the oracle db on our side,we are using ODI version 10.1.3.5.6,which reportedly has the issue of loading BLOB/CLOBS solved.I am using
    The extraction fails in the loading stage when inserting data into the C$ table with the following error.
    "22275:99999 :java.sql.BatchUpdateException:ORA-22275:Invalid LOB locator specified".
    Kindly let me know how I can resolve this issue as the requirement to load this data is very urgent.
    Thanks,
    John

    One alternate way can be done out of ODI as ODI is still not able to resolve this issue. You can trim these fields (CLOB/BLOB) and push this data as separate fields into ODI and at the reporting end you can again concatenate them.
    May be this may solve your problem ....it solved mine.
    --XAT                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • ORA-22275: invalid LOB locator specified

    Hello,
    I use Oracle 11.2.0.3. APEX 4.2.2... Listener 2.0.3 .... Glassfish server 4.0.
    When I run this procedure ( that is used in this tutorial )
    I get ORA-22275: invalid LOB locator specified.
    The error persists over Glass fish 3.0.2, Listener 2.0.1 and 2.0.2.
    Also, I installed this patch 16803775, but to not avail.
    declare
            v_mime  VARCHAR2(48);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
    BEGIN
            SELECT MIMETYPE, CONTENT, filename,DBMS_LOB.GETLENGTH(content)
                    INTO v_mime,lob_loc,v_file_name,v_length
                    FROM image
                    WHERE id = 70;
                     htp.init;
                  -- set up HTTP header
                        -- use an NVL around the mime type and
                        -- if it is a null set it to application/octect
                        -- application/octect may launch a download window from windows
                        owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
                    -- set the size so the browser knows how much to download
                    htp.p('Content-length: ' || v_length);
                    -- the filename will be used by the browser if the users does a save as
                    htp.p('Content-Disposition:  attachment; filename="'||replace(replace(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),null),chr(13),null)|| '"');
                    -- close the headers  
                    owa_util.http_header_close;        
                    owa_util.http_header_close;
                    -- download the BLOB
                    wpg_docload.download_file( Lob_loc );
    end  ;
    Any help pls, in getting that procedure works ?
    Regards,
    Fateh

    replace this statement
    select empty_clob() into c_xml from dual for update;
    with
    dbms_lob.createtemporary(c_xml, TRUE);

  • ORA-22275: invalid LOB locator specified on trigger

    I have a trigger which copies a blob on insert to one table to another.
    CREATE OR REPLACE TRIGGER SWZTPRO.TSWTMPI_BEFORE_INSERT
    BEFORE INSERT
    ON SWZTPRO.TO_TSWTMPI
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    discriminator TO_TSWCRUL.BTC_DIS%TYPE;
    discriminator:=:NEW.BTC_DIS;
    insert into .....
    If using after insert this triggerworks, but if the trigger fails for any reason, the client does not recieve the error.
    If using before insert this fails:
    insert into table, use before insert trigger
    ORA-22275: invalid LOB locator specified
    ORA-06512: at "SWZTPRO.TSWTMPI_BEFORE_INSERT", line 108
    ORA-22275: invalid LOB locator specified
    ORA-04088: error during execution of trigger 'SWZTPRO.TSWTMPI_BEFORE_INSERT'
    Any help would be appreciated

    I have also used a varaiation tirgger to do an instead of on insert on a view and I get the following error:
    ORA-25008: no implicit conversion to LOB datatype in instead-of trigger

  • DBMS_LOB.ISOPEN throws the error ora-22275 invalid lob locator

    DBMS_LOB.ISOPEN throws the error below error.
    ora-22275 invalid lob locator
    The below assume that i am getting the v_lob_length as empty. But i am getting error when it comes to DBMS_LOB.ISOPEN.
    Please correct me if i am wrong.
    here is my code:
    DBMS_LOB.createtemporary(v_xml_clob, TRUE);
    DBMS_LOB.open(v_xml_clob, DBMS_LOB.lob_readwrite);
    SELECT  DBMS_XMLGEN.getxml ('SELECT object_name, object_type from dba_objects where rownum <= 5')
    INTO    v_xml_clob
    FROM    DUAL;
    v_lob_length    := NVL(DBMS_LOB.getlength(v_xml_clob),0);
    v_index       := 1;
    fnd_file.put_line(fnd_file.log,'v_lob_length : '||v_lob_length);
    WHILE v_index <= v_lob_length
    LOOP
        v_read_cnt   := 32767;
        DBMS_LOB.read (
              v_xml_clob,
              v_read_cnt,
              v_index,
              v_chunk
        fnd_file.put(fnd_file.output,v_chunk);
        v_index := v_index + v_read_cnt;
    END LOOP;
    IF DBMS_LOB.ISOPEN(v_xml_clob) = 1
    THEN
        DBMS_LOB.close(v_xml_clob);
        DBMS_LOB.freetemporary(v_xml_clob);
    END IF;

    Most likely v_xml_clob is NULL so you'd rather check IF v_xml_clob IS NOT NULL AND DBMS_LOB.ISOPEN(v_xml_clob) = 1
    THENbye
    TPD

  • ORA-22275 invalid LOB locator

    I've tried to append couple of BLOB fields from one table and then update it to a record in another table. I got the following error. Does anyone know why?
    CHECK POINT 1
    begin
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified:
    ORA-22275
    ORA-06512: at "SYS.DBMS_LOB", line 753
    ORA-06512: at "RBSSDEV.PG_TB_COMMENT_DETAIL", line 57
    ORA-06512: at line 2
    My store procedure is :
    PROCEDURE SP_Insert_Comment_Detail
    ( v_CommentOID IN TB_COMMENT_DETAIL.COMMENTOID%TYPE ,
    v_DBName IN TB_COMMENT_DETAIL.DBNAME%TYPE ,
    v_ApplicationOID IN TB_COMMENT_DETAIL.APPLICATIONOID%TYPE ,
    v_Comments IN TB_COMMENT_DETAIL.COMMENTS%TYPE ,
    v_Created IN TB_COMMENT_DETAIL.CREATED%TYPE ,
    v_UserID IN TB_COMMENT_DETAIL.USERID%TYPE
    IS
    lv_CommentsBlob BLOB := EMPTY_BLOB;
    lv_CommentBlob BLOB := EMPTY_BLOB;
    lv_NewComment VARCHAR2(1) := 'N';
    CURSOR CommentDetail_cur IS
    SELECT Comments
    FROM TB_COMMENT_DETAIL
    WHERE CommentOID = v_CommentOID
    ORDER BY RecDate, DBName;
    CURSOR Comment1_cur IS
    SELECT Comments
    FROM COMMENT1
    WHERE CommentOID = v_CommentOID FOR UPDATE;
    BEGIN
    DBMS_LOB.CreateTemporary(lv_CommentBlob, TRUE, DBMS_LOB.CALL);
    OPEN CommentDetail_cur;
    FETCH CommentDetail_cur INTO lv_CommentBlob;
    IF CommentDetail_cur%NOTFOUND THEN
    lv_NewComment := 'Y';
    END IF;
    CLOSE CommentDetail_cur;
    INSERT INTO TB_COMMENT_DETAIL
    (CommentOID, RecDate, DBName, ApplicationOID,
    Comments, Created, UserID)
    VALUES
    (v_CommentOID, SYSDATE, v_DBName, v_ApplicationOID,
    v_Comments, v_Created, v_UserID);
    IF lv_NewComment = 'Y' THEN
    INSERT INTO Comment1
    VALUES (v_CommentOID, v_ApplicationOID, v_Comments, v_Created, v_UserID);
    COMMIT;
    ELSE
    DBMS_LOB.CreateTemporary(lv_CommentBlob, TRUE, DBMS_LOB.CALL);
    DBMS_LOB.CreateTemporary(lv_CommentsBlob, TRUE, DBMS_LOB.CALL);
    OPEN Comment1_cur;
    FETCH Comment1_cur INTO lv_CommentsBlob;
    -- Empty the Comments field of the Comment1 table
    IF Comment1_cur%FOUND THEN
    DBMS_OUTPUT.PUT_LINE('CHECK POINT 1');
    DBMS_LOB.TRIM(lv_CommentsBlob, 0);
    DBMS_OUTPUT.PUT_LINE('CHECK POINT 2');
    END IF;
    OPEN CommentDetail_cur;
    LOOP
    FETCH CommentDetail_cur INTO lv_CommentBlob;
    EXIT WHEN CommentDetail_cur%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE('CHECK POINT 3');
    DBMS_LOB.APPEND(lv_CommentsBlob, lv_CommentBlob);
    DBMS_OUTPUT.PUT_LINE('CHECK POINT 4');
    END LOOP;
    COMMIT;
    CLOSE Comment1_cur;
    CLOSE CommentDetail_cur;
    END IF;
    END SP_Insert_Comment_Detail;

    Sorry about that, error came from elsewhere...
    Thanks anyway
    Best regards
    Neil.

  • Oracle 11g - Error ORA-22275: invalid LOB locator specified

    Getting error during oBlob.freeTemporary() as
    clearBlobValues() throws Exception
    oracle.sql.BLOB oBlob = oset.getBLOB(i);
    oBlob.freeTemporary();
    I googled this error and get some solution
    "Cause: There are several causes: (1) the LOB locator was never initialized; (2) the locator is for a BFILE and the routine expects a BLOB/CLOB/NCLOB locator; (3) the locator is for a BLOB/CLOB/NCLOB and the routine expects a BFILE locator; (4) trying to update the LOB in a trigger body -- LOBs in trigger bodies are read only; (5) the locator is for a BFILE/BLOB and the routine expects a CLOB/NCLOB locator; (6) the locator is for a CLOB/NCLOB and the routine expects a BFILE/BLOB locator;
    Action: For (1), initialize the LOB locator by selecting into the locator variable or by setting the LOB locator to empty. For (2),(3), (5) and (6)pass the correct type of locator into the routine. For (4), remove the trigger body code that updates the LOB value."
    but not sure how to go about this. Can anyone lends a helping hand?
    Thanx in advance
    Edited by: user13503846 on Sep 7, 2011 10:16 AM

    You should try to post a small but complete example that allows to reproduce the issue with:
    1. your 4 digits Oracle version (client and server)
    2. the language you are using.

  • ORA-22275: invalid LOB locator specified problem

    Hi
    Can anybody point me in the right direction.. I am NOT using clob and blob anywhere in my operation.. All I am doing is plain inserts from arrays.. and it gives me this error.
    Here is the code:
    Connection conn = null;
              Statement stmt = null;
              PreparedStatement ps = null;
              CallableStatement cs= null;
              ResultSet rs = null;
              Connection conn1 = null;
              Statement stmt1 = null;
              CallableStatement cs1= null;
              ResultSet rs1 = null;
    conn = DataSrc.getDataSource().getConnection();
                   stmt =conn.createStatement();
                   conn1 = DataSrc.getDataSource().getConnection();
                   stmt1 =conn1.createStatement();
                   rs = stmt.executeQuery(sql1);
                   while (rs.next()) {
                        var10 = rs.getString(1);                    
                   cs=conn.prepareCall("{call proc1}");
                   cs.execute();
                   cs.close();
                   stmt = conn.createStatement();
                   ps = conn.prepareStatement(sql);
                   for (int pl = 0; pl < ij; pl++) {
                        var2 = array1[pl];
                        var3 = array2[pl];
                        var4 = array3[pl];
                        var5 = array4[pl];
                        var6 = “ABC”;
                        var7 = “ABC”;
                        var8 = array8[pl];
                        var9 = “ABC”;
                        var1 = var2.substring(0,6);
                        var2 = var2.substring(var2.length()-1);
                        var3 = var3.replace("'","");
                        if (var9.length()<5) {
                             var9 = "00" + var9;
                        if (var9.length()<6) {
                             var9 = "0" + var9;
                        String sql2 = "xxxxxx";
                        rs1 = stmt1.executeQuery(sql2);
                        while (rs1.next()) {
                             var11 = rs1.getString(1);                    
                                            if (!var2.equals(var8)) {
                             ps.setString(1, var1);
                             ps.setString(2, var2);
                             ps.setString(3, var3);
                             ps.setString(4, var4);
                             ps.setString(5, var5);
                             ps.setString(6, var6);
                             ps.setString(7, var7);
                             ps.setString(8, var8);
                             ps.setString(9, var9);
                             ps.setString(10, var10);
                             ps.setString(11, var11);
                             ps.executeUpdate();
                   ps.close();
                   cs=conn.prepareCall("{call xxxxxxxxx}");
                   cs.execute();
                   cs.close();               
                   stmt.executeUpdate("COMMIT");
                   stmt.close();
                   conn.close();
                   rs1.close();
                   stmt1.close();
                   conn1.close();

    cs=conn.prepareCall("{call proc1}");
    cs=conn.prepareCall("{call xxxxxxxxx}");check those procedures, might be invloved clob and blob operation....

  • ORA-22275: invalid LOB locator specified in a function

    Hello all!!!
    I am having a little problem with a function that returns a blob... When I call the function, I get that error... Here is the function (I took all the exception management code to clear it up a little...)
    <CODE>
    FUNCTION f_getfileblob (p_id IN NUMBER,
    p_application IN VARCHAR2,
    p_subject IN VARCHAR2)
    RETURN BLOB
    IS
    v_table_name VARCHAR2(50);
    v_sql_string VARCHAR2(1000);
    lobfile BLOB := empty_blob();
    v_error NUMBER;
    BEGIN
    SELECT TABLE_NAME INTO v_table_name FROM ORACLE_TEXT_FILE WHERE APPLICATION = p_application AND SUBJECT = p_subject;
    v_sql_string := 'SELECT FILE_BLOB FROM ' || v_table_name || ' WHERE id = :1';
    EXECUTE IMMEDIATE v_sql_string INTO lobfile USING p_id;
    RETURN lobfile;
    END;
    </CODE>
    So, in this function, the first select is to find the name of the table in which I store my blobs (I'm trying to do something generic and cross application). Once I have that name, I can do the select of the blob. I can only use dynamic SQL because of the table name that is not known in advance.
    I tried this function with
    DBMS_LOB.CREATETEMPORARY(LOBFILE, TRUE, DBMS_LOB.CALL);
    to create the lob at the begining, but this returns another error... (i tried with and without the initialisation of the blob, empty_blob())
    ORA-24801: illegal parameter value in OCI lob function. But I don't even know if it would help...
    Can somebody please help me?
    Thanks and best regards
    Neil.

    Sorry about that, error came from elsewhere...
    Thanks anyway
    Best regards
    Neil.

  • ORA-01017: invalid username/password when using TNS Alias

    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AM

    SSNair wrote:
    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AMHere's your problem:
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DBBecaue of the dollar-sign, The shell is trying to expand the environment variable $bvs#ir@DB
    Of course you have no environment variable by that name so what gets passed to sqlplus is not "IRES_USER/U9$bvs#ir@DB", but rather "IRES_USER/U9"
    In your first test, you didn't pass the password on the command line, so the shell didn't get a chance to intercept it.
    You can have a similar issue if you have a '@' in your password
    oracle> sqlplus scott/P@ssword@orclTns will catch that first "@" as the delimiter to the tns string, and come up with something that cant' be resolved.
    Edited by: EdStevensTN on Jun 17, 2011 8:59 AM

  • Receiving ORA-01465: invalid hex number when using HEXTORAW

    I'm trying to use hextoraw to convert a value in a CSV file read from an external table. Works on some systems and not on others. Is there a way that I can avoid this or program around this? Any ideas what the problem is? It fails with an “invalid hex value” .
    This is for Oracle 10.2.0.4 Here is the code and the external table that I’m using.
    select HEXTORAW(REPLACE(EnkryptedPassword,'0x')) FROM CUSTOMER1; <--- Failes or ORA-01465 (CSV file data below)
    CREATE TABLE CUSTOMER1
    UserID VARCHAR2(100 CHAR),
    FirstName VARCHAR2(50 CHAR),
    LastName VARCHAR2(50 CHAR),
    Locked VARCHAR2(50 CHAR),
    CustomerID VARCHAR2(100 CHAR),
    Pwd VARCHAR2(100 CHAR),
    EnkryptedPassword VARCHAR2(100 CHAR)
    ORGANIZATION external
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY ARCHIVE
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE
    FIELDS TERMINATED BY ","
    MISSING FIELD VALUES ARE NULL
    LOCATION ('PWDCONVERSION2')
    REJECT LIMIT 1
    COMMIT
    Inside the PWDCONVERSION2 file:
    [email protected],JOHN,SMITH,1,C_2M8C2F_CM_NC,C_2M8C2F_CM_NC,0x7C4141938A1F69944BFCA0BED5BB3FEA3CA92A7

    Thank-you for the response. I believe I may have found the problem (probably).
    On some systems the ACCESS PARAMETER for the external table "RECODRDS DELIMITED BY NEWLINE" will not work if there is some other character other than "\n". In windows it works fine. On some other systems it works finds as well. On Linux Distro I tend to run into problems. I tried this out for more than one line in the CSV. Then scaled back to just one line. It accepted one line but not more than one line. So I trying
    RECORDS DELIMITED BY NEWLINE CHARACTERSET WE8MSWIN1252
    Any ideas what would help recognize all types of newline characters?

  • DBMS_LOB.CONVERTTOBLOB invalid LOB locator specified: ORA-22275

    Hi all,
    the following code has been working great on 11g (and apex.oracle.com)
    now when I try to use this function under 10g XE
    I get following error :
    ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275
    ORA-06512: at "SYS.DBMS_LOB", line 696
    ORA-06512: at "RIGHTSHOP.C2B", line 14line 14 being the line with DBMS_LOB.CONVERTTOBLOB
    any ideas ?
    CREATE OR REPLACE FUNCTION c2b( p_clob IN CLOB )
          RETURN BLOB
    is
      temp_blob   BLOB;
      dest_offset NUMBER  := 1;
      src_offset  NUMBER  := 1;
      amount      INTEGER := dbms_lob.lobmaxsize;
      blob_csid   NUMBER  := dbms_lob.default_csid;
      lang_ctx    INTEGER := dbms_lob.default_lang_ctx;
      warning     INTEGER;
    BEGIN
    DBMS_LOB.CREATETEMPORARY(lob_loc=>temp_blob, cache=>TRUE);
      DBMS_LOB.CONVERTTOBLOB(temp_blob, p_clob,amount,dest_offset,src_offset,blob_csid,lang_ctx,warning);
      return temp_blob;
    END;Kr
    Martin

    Can't reproduce
    SQL> CREATE OR REPLACE FUNCTION c2b( p_clob IN CLOB )
    RETURN BLOB
    is
    temp_blob BLOB;
    dest_offset NUMBER := 1;
    src_offset NUMBER := 1;
    amount INTEGER := dbms_lob.lobmaxsize;
    blob_csid NUMBER := dbms_lob.default_csid;
    lang_ctx INTEGER := dbms_lob.default_lang_ctx;
    warning INTEGER;
    BEGIN
    DBMS_LOB.CREATETEMPORARY(lob_loc=>temp_blob, cache=>TRUE);
    DBMS_LOB.CONVERTTOBLOB(temp_blob, p_clob,amount,dest_offset,src_offset,blob_csid,lang_ctx,warning);
    return temp_blob;
    END;  2    3    4    5    6    7    8    9   10   11   12   13   14   15   16 
    17  /
    Function created.
    SQL> declare
      2     b blob;
      3     c clob;
      4  begin
      5     c := 'x';
      6     b := c2b (c);
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    SQL> and my version (also XE)
    SQL> select *
      2    from v$version
      3  /
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

  • ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified:

    "ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275"
    I use the procedure to convert the documents if it is not already converted before using procedure as follows
    PROCEDURE "STARDOC"."HTMLOUTPUT" (
    "DOCID" IN NUMBER) IS
    mklob clob;
    doccount number;
    errorcode number;
    errormessage varchar2(200);
    BEGIN -- executable part starts here
    SELECT COUNT(document_id) INTO doccount FROM docviewhtml where document_id=docid;
    --dbms_output.put_line(doccount);
    if doccount=0 then
         dbms_output.put_line('Document Not Found: Converting '||docid);
         --If document is not found run document coversion routine
         ctx_doc.filter('idxdocuments',docid, mklob,FALSE);
         INSERT INTO docviewhtml(document_id, html) VALUES (docid, mklob);
         COMMIT;
    elsif doccount=1 then
         --return;
         dbms_output.put_line('Document Found');
         --if document id found then return the document content
         null;
    else
         --dbms_output.put_line('Error occured');
         --need to deal with duplicate documents
         null;
    end if;
    dbms_lob.freetemporary(mklob);
    EXCEPTION
    --rollback when an exception occurs
         WHEN OTHERS THEN
              errorcode:=SQLCODE;
              errormessage:=SQLERRM;     
              dbms_output.put_line(sqlcode || ':' ||sqlerrm);
              ROLLBACK;
              LOGERROR(errorcode,errormessage);
    END "HTMLOUTPUT";
    i get the error when i convert large documents
    "ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275"
    what is wrong. please help!

    "ORA-06502: PL/SQL: numeric or value error: invalid
    LOB locator specified: ORA-22275"
    PROCEDURE "STARDOC"."HTMLOUTPUT" (
    "DOCID" IN NUMBER) IS
    mklob clob;
         ctx_doc.filter('idxdocuments',docid, mklob,FALSE);
    INSERT INTO docviewhtml(document_id, html) VALUES (docid, mklob);I think You forget to initialize variable mklob.
    You can do it, assigning the empty_clob().

  • Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

    Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

    Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

  • Best practice when using auto complete in view layer

    Hello
    I have a question regarding best way to store/cash data when using auto complete function in view layer.
    I know that there will be a lot of visitors that will use this function and I dont want to kill the application server so I need some advice.
    Its about 6000 words that should be searchable .... my first thought was to create a Singleton-bean that stores current items and that I will iterate over but its a lot of "waste" doing that way.
    I would be very glad if anyone could advice me how to do this best way if there is any de-facto standard to use when using auto completion in "view layer"
    Thanks!
    Best Regards/D_S

    I dont know what your design is, but here are some ideas:
    To me, autocomplete means you have some user specific data that the user entered prevously such as their home address, and some generic data that is not specific to any particular user. I would store all that in a database. For the user specific data I would store their userID along with the data in the database. Then, when populating a JSP page, I would call up just the data specific to that user and the generic data from the database. I would store it as an array of some type in javascript client--side. When the user clicks the autopopulate button, I would have that button call a javascript fuction that reteives the data from the javascript array and populate the various textfields. All this is done client-side so the form does not have to be re-drawn. I question why you have 6000 items. Normally, autopopulate has at most only a few dozens of items. If you still need 6000 items, I suggest adding a textfield to the form to filter what the data he needs down to a manageable amount. Example: rather than get all names from a telephone book, put a textfield on the form that allowfs an end user to enter a letter a to z such as 'b', then only fetch last names from the phone book that begins with 'b'.

Maybe you are looking for

  • Uncompressed 8-bit Preset problems

    Hi, I'm trying to solve a jaggy text problem by creating a new uncompressed 8-bit sequence (which I've never used before). I try using the preset for Uncompressed 8-bit and click OK... but then I get the following message: "Video Compressor Uncompres

  • WRE54G Range Expander -- Not very powerful

    Here is the situation. I have a house that is laid out from north to south at about 60 feet, with two walls between one bedroom on the opposite end from the access point, and the same with the other bedroom except it is not in direct line with the ac

  • MacBook late '08, Lion, Magic Mouse won't scroll

    The mouse was working then suddenly won't scroll. Tried deleting the pref and no luck. Tried restoring back to Snow Leopard from SuperDuper and the mouse worked fine. Reinstalled Lion and it won't scroll. Don't have USB Overdrive on the machine. Susp

  • OneNote 365 host of issues

    I have a user experiencing several issues on a Win7 machine using Office 365 (local application). Background:  She's created about 25 GB worth of OneNote folders and has been storing them on a company Sharepoint so others can edit them.  Every indivi

  • Why do i have to install iTunes everytime just so i can connect my iPod Touch to sync it? It mounts once and after that it won't appear.

    It just allows me to mount it once, after that it will not mount until i install i Tunes again. Is there anything i can do so it mounts all the time suxxessfully? Many thanks, Carl.