VLD-2550 and 2551: CLOB data type errors

Hi all

I tried to solve thi sproblem, but have not been able to find a solution.
Basically I have a Col1 (of A table) of the clob data type that is to be mapped to Col2 (table B).
But when I validate the card I get the error:

VLD-2550: BLOB, CLOB or NBLOB of the remote source data cannot be transformations (control Details: If you have any CLOB, BLOB as a remote data source, it must be directly mapped to a target feature)
and
VLD-2551: BLOB LCOB or NBLOB remote data source must be set based ON a SET of generation mode.

My card has a mapping one between the passes of the tables A and B. Col1 is directly related to Col2 (if that is what is meant by any of the transformations of type CLOb)

Thank you very much

Hello

If your source table (which the CLOB) is in the remote computer then you must set the mapping mode basic SET and you need to connect directly the source column of the target column.

If you still get this kind of validation waring and simple not then ignore them.
This is a defect of OWB. See Bug 5989066 : card VALIDATION WITH BLOB OBJECTS JETTÉ VLD-2550 AND VLD-2551 WARNINGS, which has yet to be fixed.

Thank you
Fati

Tags: Business Intelligence

Similar Questions

  • Simple question of CLOB data type

    declare
    r clob;
    begin
      r := lpad('0',32768,'0');
    end;
    

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    ORA-06512: at line 4 level

    06502 00000 - "PL/SQL: digital error or the value of %s.

    So that tells me that an in PL/SQL CLOB data type cannot be as big as a VARCHAR2, correct? A variable in a PL/SQL can be greater than this?

    Thank you!

    So that tells me that an in PL/SQL CLOB data type cannot be as big as a VARCHAR2, correct?

    NO - that tells you that LPAD works with VARCHAR2 and function is what the limit.

  • Problem with the CLOB data type.

    Greetings,

    I am facing a problem with the CLOB data type. I know that the CLOB data type is 4 GB (I use Oracle 9i). But in the Pl Sql procedure, I can only store 34305 size for a CLOB variable character data.

    This is the test script that I am trying to run.

    DECLARE
    -Local variables here*.
    I have INTEGER;
    C_1 CLOB.
    BEGIN
    FOR Rec IN (SELECT
    *
    ACCORDING TO THE TABLE)
    LOOP
    C_1: = c_1 | Rec.Clo_1;
    END LOOP;
    EXCEPTION
    WHILE OTHERS THEN
    Dbms_Output.put_line (SQLERRM);
    END;


    Here variable C_1 range value 34305 good character regardless of type CLOB. Now the above script fails if query my buckle - huge number of return values. It is throwing the exception "error during transfer of files ORA-06502: PL/SQL: digital error or value."

    He would be grateful if someone can help me on this.

    Thank you.

    You are probably better off using DBMS_LOB.append, instead of the concatenation of varchar2 (|).

    And... take off your when-other Manager exceptions, please...

  • Insert/update the column with the clob data type

    Hi all

    ORCL Version: 11g.

    I have a table with the clob data type.

    Test12

    (col1 clob);

    I'm trying to insert/update to update the column with more than 4000 characters.

    But due to the limitation of tank 4000, I could not Insert/Update.

    Need your help in resolving this issue.

    THX

    Rod.

    The limit of 4000 characters is incorrect.  That pertains only to the varchar2 data type.  A clob can hold more than 4 G.

    Here is an example that shows how to insert it, I found...

    Otherwise, here is a way 'dirty' to do.

    insert into your_table (COLA, COLB)

    values

    (PRIMARY_KEY, PART 1 OF DATA)

    ;

    Update your_table

    Define COLB = COLB | PART 2 OF BIG DATA

    where COLA = PRIMARY_KEY;

    Update your_table

    Define COLB = COLB | PART 3 OF BIG DATA

    where COLA = PRIMARY_KEY;

    .. and so on...

    I don't know that I personally recommend the second style...  But he could do the job.

  • Error in the Primavera Analytics 3.1 (staretl issuance of long data type error)

    Hello

    When executing ETL for analytics Primavera 3.1 I am faced with long data type error.

    Session detailed log can be found on the below URL.

    http://pastebin.com/Ez0VihGN

    I have following environment.

    Primavera analytics on Win2k8 64-bit with 11g R2 DB.

    EPPM Primavera DB on Sql Server

    Connectivity via Oracle Gateway. (tested)

    Help, please.

    Naeem Akhtar

    Published by: Naeem Akhtar Khan on April 9, 2013 03:58

    Based on your post there is an error in you initdg4msl.ora file... Make sure you the database connection is correct and you add the statement two to the file

    for example

    Should be: HS_FDS_CONNECT_INFO = YOURSQLSERVER / / YOUR DATABASE

    Make sure that you add the following code in the same file (see page 92):
    HS_NLS_LENGTH_SEMANTICS = CHAR
    HS_FDS_CHARACTER_SEMANTICS = TRUE
    HS_KEEP_REMOTE_COLUMN_SIZE = ALL

    Restart the ETL process

  • Problem with the length of a CLOB data type

    Hello

    In my application, I have a page with an interactive report of written blogs - on this page, you can add a new blog (text box - CLOB data type), discovered a blog or edit a blog.
    There is something going wrong with the size of the blog text. I know APEX cannot accept that 32K text and I've seen the great value saving thread, but this isn't the solution to my problem.

    The problem is that when I add a blog with say about 4000 characters, it is saved in the database, but the interactive report, when I click on the view or edit icons for this blog, the blog text field appears empty. For small items (< 4000 characters), there is no problem.
    Anyone know why this is happening and how to fix this?
    Thank you!

    There seems to be a bug in the calculation of the value of the element Source when the Source Type is a SQL query and the data type of the selected column is CLOB. I'll file a bug for this. For now, I have demonstrated how you can use a type of function PL/SQL source instead. Please see point P3_TEXT:

    beginfor c1 in (select blog_textfrom blogwhere blog_id = :P3_BLOG_ID) loop  return c1.blog_text;end loop;return null;end;
    

    Scott

  • From a function table: invalid data type error

    Hello

    I'm a ORA-00902: invalid data type error when I try to call the function from a select statement below. Here, I am leaving an array from a function.
    create or replace package pkg10
    as
    
    type tabletype1 is table of table1%rowtype
    index by binary_integer;
    
    function func1 return tabletype1;
    
    end pkg10;
    create or replace package body pkg10
    as
    
    function func1 return tabletype1 
    is
        v_tab1 tabletype1;
        idx integer;
    begin 
    
        idx := 1;
        
        for i in (select * from table1)
        loop
            v_tab1(idx).name1 := i.name1;
            v_tab1(idx).key := i.key;
            idx := idx+1;
            
        end loop;
    
    return v_tab1; 
    
    end func1; 
    
    end pkg10;
    select * from table(pkg10.func1);
    Please point out to me where I'm wrong.

    Thank you

    Sathya Vamsi says:
    Hello

    I'm a ORA-00902: invalid data type error when I try to call the function from a select statement below. Here, I am leaving an array from a function.

    create or replace package pkg10
    as
    
    type tabletype1 is table of table1%rowtype
    index by binary_integer;
    
    function func1 return tabletype1;
    
    end pkg10;
    
    create or replace package body pkg10
    as
    
    function func1 return tabletype1
    is
    v_tab1 tabletype1;
    idx integer;
    begin 
    
    idx := 1;
    
    for i in (select * from table1)
    loop
    v_tab1(idx).name1 := i.name1;
    v_tab1(idx).key := i.key;
    idx := idx+1;
    
    end loop;
    
    return v_tab1; 
    
    end func1; 
    
    end pkg10;
    
    select * from table(pkg10.func1);
    

    Please point out to me where I'm wrong.

    Thank you

    you try to use a data type of PL/SQL as part of an SQL statement. is NOT authorized.

  • Full table scan without sweeping particular column (CLOB data type column)

    I want to select the online_bank table. This table with a column of type CLOB data. I want to select all the columns in the table, except the column type of clob data. but oracle full table, including the column analysis server type CLOB data when the query is run. It took a long time to complete the table. Please give me a solution of full table scan without analysis the CLOB data type column. How to avoid the time scanning CLOB data type column... ?

    878728 wrote:
    I want to select the online_bank table. This table with a column of type CLOB data. I want to select all the columns in the table, except the column type of clob data. but oracle full table, including the column analysis server type CLOB data when the query is run. It took a long time to complete the table. Please give me a solution of full table scan without analysis the CLOB data type column. How to avoid the time scanning CLOB data type column... ?

    We do not have your table.
    We do not have your data.
    Therefore, we have no answer to your apparent mystery.

  • Add a new node to an existing XML (CLOB) data type

    Hi guys,.

    I have a table with one of his field as a CLOB data type that stores a XML here, now I need to add an additional node to the XML.

    <?xml version="1.0" encoding="UTF-8"?><alert>
     
         <tab0 comment="section in XSL component" name="Initial Information">
              <details>     
                   <Priority>0001</Priority>
                   <DateVRUClaimInitiated>2010-06-29</DateVRUClaimInitiated>
              
              </details>
              <contacts comment="grid in XSL component">
                   many child nodes here
              </contacts>               
         </tab0>
     
         <tab1 comment="section in XSL component" name="Additional Information">
              <details comment="list collection in XSL component">
                   <Channel1>123</Channel1>
              </details>
              <IPAddresses>
                   Many child nodes here
              </IPAddresses>          
              <ANIPhones>
                   Many child nodes here
              </ANIPhones>
         </tab1>
    </alert>
    Here, in this xml file, I need to add this node < / canal2 >... so my xml should look like
    <?xml version="1.0" encoding="UTF-8"?><alert>
     
         <tab0 comment="section in XSL component" name="Initial Information">
              <details>     
                   <Priority>0001</Priority>
                   <DateVRUClaimInitiated>2010-06-29</DateVRUClaimInitiated>
              
              </details>
              <contacts comment="grid in XSL component">
                   many child nodes here
              </contacts>               
         </tab0>
     
         <tab1 comment="section in XSL component" name="Additional Information">
              <details comment="list collection in XSL component">
                   <Channel1>123</Channel1></Channel2>
              </details>
              <IPAddresses>
                   Many child nodes here
              </IPAddresses>          
              <ANIPhones>
                   Many child nodes here
              </ANIPhones>
         </tab1>
    </alert>
    I can do using an update or something?

    but it converts my CLOB to ORAXML.

    then use getclobval():

    select insertchildxml(xml, '/alert/tab1/details', 'Channel2' ,xmltype('')).getclobval() xml from t
    
  • UNION ALL in VARCHAR and CLOB data types

    Hi all

    I want to execute the below query, but the Oracle is throwing a single error.

    Select the comments as cm_comments from table1

    Union of all the

    Select text_action from table2

    Union of all the

    Select the notes to table 3

    Union of all the

    Select null from table 4

    Error I got: ORA-01790: expression must have the same type of data, matching expression

    Here, all columns have the data type of the CLOB except the 'notes' column in the table "table3." I know that this is the reason for the error, but I need a work around that. One solution I know is that cast varchar of clob type, but in this case, there is a chance to cut the data if the CLOB column contains data whose length is greater than the maximum data length for a VARCHAR column.

    Please help me in this case to find a solution to this problem.

    Your timely help is well appreciated.

    Thanks in advance.

    Try the below with TO_CLOB

    Select the comments as cm_comments from table1

    Union of all the

    Select text_action from table2

    Union of all the

    Select TO_CLOB (notes) in table3

    Union of all the

    Select null from table 4

  • long data type error

    Hi all

    Hope all are fine, I got stuck in a query, and I need your help, I will be grateful for this.

    I was using the query below to copy all the data of table x to y.

    SQL > insert y select * from x@dblnkname;

    ERROR on line 1:

    ORA-00997: illegal use of the LONG data type

    I m getting the error above, tables x and there does not "long" datatype.your help will be appreciated, thanks in advance.

    DB: 11.2.0.3

    OS: RHEL 6.1

    Thank you

    Kind regards.

    copy of user/password@sid to user1/password@sid add user1.new_table using select * from user.old_table;

  • The unexpected return of the "Data Type" error

    I searched the forum and found only discussions among more than a year, so either I'm a loner, or is raising its ugly head again.

    I have a project that I worked on between two machines, both running 11.0.2.11 with the same AE plug-ins. One is a macbook pro, one is a macpro. The two are running 10.6.8 (I think it's snow leopard). I've saved the project files, and active in the folder dropbox on my machines so that everything is always synchronized between them. It was working perfectly for month. * I recently upgraded to anything, other than the installation of Adobe Acrobat on the desktop a few days ago.

    This morning on my desktop computer, I couldn't project to open without receiving the error "unexpected data type". Now the shift did nothing. Instinctively, I started a new project and imported the .aep I tried to open. No errors! Then I tried to change workspaces and the error came again. I hit caps lock shift and tried again. No go. At one point, the workspace drop-down list were bullets next of * two * of the workspaces, as if they were both active simultaneously.

    My solution for now was to go to my selection on the site and go back to a previously saved version of the same project (thank you * YOU * dropbox) a few days ago. That open fine, but missing a few hours of work.

    My fear is that it will happen again and I'll have to keep going back in time to continue working (two steps forward, one step back) and I have a deadline to meet. I'll try to stay away from custom work spaces, as a poster on this forum says they produce this error in CS6 (no useful answer to this thread).

    Does anyone else know this in 2013? Any ideas? Any help is appreciated.

    CS6 AE 11.0.2.11

    V the Pro Mac OS 10.6.8

    Processor: 2 x 2.66ghz dual core intel xeon

    12 GB 667 mhz DDR2 RAM

    You can try just remove your customized workspaces... Could be as simple as that and not a problem at all with the projects themselves...

    Mylenium

  • Oracle DW and necessity of date type.

    Vast majority of designing data warehouses use the granularity of the fact to the date level table. In oracle, you can use only the data type of date (which is not really date rather datatime) to represent the date in truncating the time part of it.
    But it allocates even 7 bytes for headaches from it. One of the competitions of this Oracle the true DATE type that takes just 3 bytes to store the value of type date. You can imagine how much storage space you can save using 3 bytes instead of 7 paintings done great. I think that Oracle needs to come with a similar option soon. It will help a lot in performance and the use of disk space.

    Not really relevant to this forum. The title of the forum clearly States ' * + don't post Product - Related Questions here + * ".

    As to the question that you raised - RDBMS Oracle supports advance user-defined data types. You can easily implement a data byte 3 type date personalized if you wish.

  • How to convert clob data type varchar2.

    Hello
    If select below questioning the data type must be varchar2 but I want to convert the text to a clob.


    Select 'World' of double;


    Kind regards
    Fame
    SQL> Select 'My_name is rajuvan' Vrchr,
    2       TO_CLOB('My_name is rajuvan') clb
    3      from dual; 
    
    VRCHR                          CLB
    ------------------------------ ------------------------------
    My_name is rajuvan             My_name is rajuvan
    
    SQL>
    
  • Data Type error

    Hello

    Need is,

    How to change the String data type in the data type Number

    I want to retrieve the employeeid (NUMBER) of other VO and save another VO

    Hello

    You can use the code to change your number to string below

    String strNumber =
    pageContext.getOANLSServcies().NumberToString(num,"###,###,##0.00000;-###,###,##0.00000");
    

    or simply use

     import oracle.jbo.domain.Number;
    
    try
    {
    
    Number numValue = new Number (stringVal);
    
    }
    catch(SQLException e)
    {
    e.printStackTrace();
    }
    

    Thank you
    AJ

Maybe you are looking for