Regd: In Coalesce retrieves values

Hello

Please someone explain me the script, below how it extracted, why we gave way and what substring can be found here.

SELECT RECID, XMLRECORD,to_date(COALESCE(substr(extractvalue(XMLRECORD,'/row/cDEBIT.VALUE.DATE'),1,8),'19991231'),'YYYYMMDD ')

Kind regards

Alain

It attempts to retrieve the value of cDEBIT.VALUE.DATE as a string from the XML, takes the first 8 characters of it (I suppose he wants just the date and not any component "hour").

If there is not a date value that XML then COALESCE looks like use a NVL, and '19991231' value to substitute.

Then the date resulting is converted to a DATE data type by using to_date with the appropriate size mask.

PS EXTRACTVALUE is obsolete the XML features in newer versions of Oracle.

Since 10g new features there to retrieve data XML using XMLTABLE or XQUERY functionality.

If you post more details upon your request we show how it can be rewritten better get the values of the XML.

Tags: Database

Similar Questions

  • Retrieving values from XML in Oracle 9i - part II

    Hello

    regarding my previous post retrieving values of XML in Oracle 9i , I now have a different requirement.

    Assuming that the XML is as follows:

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < GenericRequest xmlns =" http://webservices.mysite.com/test "xmlns:ns =" " http://webservices.mysite.com/test/NS "xmlns:ns1 =" " http://webservices.mysite.com/test/ns1 "xmlns:ns2 =" " http://webservices.mysite.com/test/ns2 ">

    < ns1:order >

    < ns1:orderItems >

    < ns1:orderItem >

    create < ns1:operation > < / ns1:operation >

    < ns1:brickId > TST002 < / ns1:brickId >

    < ns1:brickAttributes >

    < ns1:attribute >

    < ns2:name > COUNTRY < / ns2:name >

    < ns2: value > U.S. < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CUST_ID < / ns2:name >

    < ns2: value > 12345 < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CITY < / ns2:name >

    < ns2: value > New York < / ns2: value >

    < / ns1:attribute >

    < / ns1:brickAttributes >

    < / ns1:orderItem >

    < ns1:orderItem >

    Update < ns1:operation > < / ns1:operation >

    < ns1:brickId > TST001 < / ns1:brickId >

    < ns1:brickAttributes >

    < ns1:attribute >

    < ns2:name > COUNTRY < / ns2:name >

    < ns2: value > U.S. < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CUST_ID < / ns2:name >

    < ns2: value > 22222 < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CITY < / ns2:name >

    < ns2: value > Los Angeles < / ns2: value >

    < / ns1:attribute >

    < / ns1:brickAttributes >

    < / ns1:orderItem >

    < / ns1:orderItems >

    < / ns1:order >

    < / GenericRequest >

    As you can now see the XML contains several elements of the order. For each agenda item, I have a single operation and a brick_id. Then, for each item on the agenda, I have a list of brickAttributes (name and value).

    How can I get something like that?

    OPERATION BRICK_ID NAME VALUE

    --------- -------- ------- -----------

    create TST002 COUNTRY WE

    create TST002 CUST_ID 12345

    create TST002 New York CITY

    update of TST001 COUNTRY United States

    Update TST001 CUST_ID 22222

    Update TST001 CITY Los Angeles

    Version of database is 9.2.0.8

    SELECT * FROM version of v$.

    BANNER

    ----------------------------------------------------------------

    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64 bit Production

    PL/SQL Release 9.2.0.8.0 - Production

    CORE Production 9.2.0.8.0

    AMT for HP - UX: 9.2.0.8.0 - Production Version

    NLSRTL Version 9.2.0.8.0 - Production

    Kind regards.

    Alberto

    Response of Odie, result is that extend

    with sample_data as (
    select xmltype(
    '
    
              
                
                  
                    create
                    TST002
                    
                      
                        COUNTRY
                        US
                      
                      
                        CUST_ID
                        12345
                      
                      
                        CITY
                        New York
                      
                    
                  
                  
                    update
                    TST001
                    
                      
                        COUNTRY
                        US
                      
                      
                        CUST_ID
                        22222
                      
                      
                        CITY
                        Los Angeles
                      
                    
                  
                
              
    ') xmldoc
    from dual
    )
    select extractvalue(value(x), 'ns1:orderItem/ns1:operation', 'xmlns:ns1="http://webservices.mysite.com/test/ns1"') as operation
         , extractvalue(value(x), 'ns1:orderItem/ns1:brickId', 'xmlns:ns1="http://webservices.mysite.com/test/ns1"') as brick_id
         , extractvalue(value(y), 'ns1:attribute/ns2:name', 'xmlns:ns1="http://webservices.mysite.com/test/ns1", xmlns:ns2="http://webservices.mysite.com/test/ns2"') as name
         , extractvalue(value(y), 'ns1:attribute/ns2:value', 'xmlns:ns1="http://webservices.mysite.com/test/ns1", xmlns:ns2="http://webservices.mysite.com/test/ns2"') as value
    from sample_data t
       , table(
           xmlsequence(
             extract(
               t.xmldoc
             , '/GenericRequest/ns1:order/ns1:orderItems/ns1:orderItem'
             , 'xmlns="http://webservices.mysite.com/test", xmlns:ns1="http://webservices.mysite.com/test/ns1"'
             )
           )
         ) x
       , table(
           xmlsequence(
             extract(
               value(x)
             , 'ns1:orderItem/ns1:brickAttributes/ns1:attribute'
             , 'xmlns:ns1="http://webservices.mysite.com/test/ns1"'
             )
           )
         ) y
    ;
    

    As shown, it simply retrieves to a higher level object that repeats once in table x and happening at the table there, which returns the expandable nodes.  The join is managed by value (x) in the second simple table.  It assumes that there is always 1 or several nodes of ns1:attribute in each ns1:orderItem.

  • retrieve values, regardless of the case

    Hi all
    How to retrieve values, regardless of the case. For Examle,.
    column_value = "name" when I try to retrieve using the
    select *  from table where column_value = 'NAME'
    
    But when i use the following query it is working
    select *  from table where column_value = Lower('NAME')
    My request will contain values higher or lower, so regardless of case-sensitive, I need to retrieve values. How this might be possible.

    Thank you

    You must apply the case function to both sides to ignore case

    select *  from table where lower(column_value) = Lower('NAME')
    
    //OR
    
    select *  from table where upper(column_value) = upper('NAME')
    
  • Retrieve value of the card

    Hi all

    I want to retrieve the value of the card. What droplets used for this?

    Thanks in advance

    I want to retrieve the value of the card. What droplets used for this?

    You can you ForEach droplet.
    For more information, you can go through:
    http://docs.Oracle.com/CD/E23095_01/platform.93/PageDevGuide/HTML/s1316foreach01.html
    Example:

    
          
          
                  Key is     value is 
           
    
    

    -RMishra

    Edited by: RMishra February 12, 2013 18:37

  • create the cookie using pl sql and retrieve values

    Hello
    I am currently in an urgent need to create cookies to BE oracle and also read the values of the. I tried to use code below. his display error
    code
    DECLARE
    ourcookie owa_cookie.cookie;
    BEGIN
    ourCookie: = owa_cookie.get('SESSION2');
    END;
    /

    BEGIN

    owa_util.mime_header ("text/html", FALSE ");

    -Create a cookie
    (owa_cookie). Send
    name = > 'SESSION. "
    value = > '344444',.
    expires = > sysdate + 2,.
    path = > ' / ');


    owa_util.http_header_close;

    EXCEPTION
    WHEN OTHER THEN NULL;

    END;


    But when I'm reading the cookie that I created, I am unable to exercise

    -It's for reading cookies
    DECLARE
    ourcookie owa_cookie.cookie;
    BEGIN
    ourCookie: = owa_cookie.get('SESSION2');
    END;
    /

    error:
    ORA-06502: PL/SQL: digital error or value
    ORA-06512: at "SYS." OWA_UTIL", line 325
    ORA-06512: at "SYS." OWA_COOKIE', line 36
    ORA-06512: at "SYS." OWA_COOKIE', line 140
    ORA-06512: at line 4 level

    842106 wrote:

    Now according to the guidelines of your comment, I created a simple OWA environment and run the code below. Now I get not found error of data

    ORA-01403: no data found
    ORA-06512: at line 23

    The error is caused the cookie is not found.

    The following is not valid - as there is no browser to receive the cookie:

    (owa_cookie). Send
    name-online "SESSION1"
    value-online '344433',
    expires => it sysdate + 2,.
    => path ' / '.
    );

    The following code must set the CGI environment - and add the cookie to the environment for the following code to read (as shown in the code example that I posted in the 2nd thread I talked to you):

    / * Initialization * /.
    OWA.cgi_var_name (1): = 'something ';
    OWA.cgi_var_val (1): = "other";
    OWA.init_cgi_env (1, owa.cgi_var_name, owa.cgi_var_val);
    / * End initialization * /.

    Of course, the following code will fail with a NO_DATA_FOUND there is no cookie.

    ourCookie: = owa_cookie.get('SESSION1');
    v_session: = ourCookie.vals (1);

    So it is not possible to create a true cookie and retrieve the value of CGI environment or apex not?

    Yes. But the web browser is non-existent. Then, you need create the CGI environment, which would have created the web server, before you call your allowed web code PL/SQL.

    In other words, if your initialization code of CGI should pretend that it is the web server, he received the call from web browser, it received the cookie (s) from the web browser - and now she needs to create the CGI (including cookies) environment for this web browser, and then call the procedure PL/SQL referenced by the browser in the URL, he argued.

  • Retrieve values of key Flexfield SIT

    Hello

    I hope I posted this in the right place.

    I am trying to write a query to retrieve all the data of special type of information for a person (in order to be used in a custom in Discoverer folder).

    I was able to get the segments and segment names (guests) but I'm fighting to get the values entered because of some of them being related to value sets.

    So far my query is:
    select pac.SEGMENT1,
    xxntc_get_segment_info('SEGMENT1', fifs.id_flex_num, 'name') as seg1_name,
    pac.SEGMENT2,
    xxntc_get_segment_info('SEGMENT2', fifs.id_flex_num, 'name') as seg2_name,
    pac.SEGMENT3,
    xxntc_get_segment_info('SEGMENT3', fifs.id_flex_num, 'name') as seg3_name,
    pac.SEGMENT4,
    xxntc_get_segment_info('SEGMENT4', fifs.id_flex_num, 'name') as seg4_name,
    pac.SEGMENT5,
    xxntc_get_segment_info('SEGMENT5', fifs.id_flex_num, 'name') as seg5_name,
    pac.SEGMENT6,
    xxntc_get_segment_info('SEGMENT6', fifs.id_flex_num, 'name') as seg6_name,
    ppa.person_id,
    fifs.id_flex_structure_code,
    fifs.id_flex_structure_name,
    fifs.id_flex_num
    from PER_ANALYSIS_CRITERIA pac, PER_PERSON_ANALYSES ppa, FND_ID_FLEX_STRUCTURES_VL fifs
    where ppa.ANALYSIS_CRITERIA_ID = pac.ANALYSIS_CRITERIA_ID
    and pac.id_flex_num = fifs.id_flex_num 
    AND ppa.person_id = :person_id;
    As you can see, I created a function to get the name of the segment. The query used in this function is:
    select form_left_prompt
    into l_string
    from FND_ID_FLEX_SEGMENTS_VL fifg
    where upper(application_column_name) = upper(:p_segment)
    and id_flex_num = :p_structure_id;
    I can see the value to the actual value of the PER_ANALYSIS_CRITERIA segment (i.e., it was a free text field) or an identification number which I assume is related to a set of values.

    I am able to get the value of set ID of FND_ID_FLEX_SEGMENTS_VL in my service.

    However, based on these values, how then can I return the value narrative real segment based on the information that I have extracted so far?

    Thanks a lot for your suggestions.
    Hazel

    It is, but it isn't easy - essentially you must query the tables for a ' where clause ' of the valueset, and then build the rest of the query (IE what actuall or columns were recovered from what table (s)), and then dynamically run - probably need to do as a function of how you are going to use, I thought I would.

    Clive

    Published by: clive_t on 2 July 2012 14:18

  • Retrieving values from XML in Oracle 9i

    Hello

    I have the following XML:

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < GenericRequest xmlns =" http://webservices.mysite.com/test "xmlns:ns =" " http://webservices.mysite.com/test "xmlns:ns1 =" " http://webservices.mysite.com/test "xmlns:ns2 =" " http://webservices.mysite.com/test ">

    < ns1:order >

    < ns1:orderItems >

    < ns1:orderItem >

    create < ns1:operation > < / ns1:operation >

    < ns1:brickId > TST123 < / ns1:brickId >

    < ns1:brickAttributes >

    < ns1:attribute >

    < ns2:name > COUNTRY < / ns2:name >

    < ns2: value > U.S. < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CUST_ID < / ns2:name >

    < ns2: value > 12345 < / ns2: value >

    < / ns1:attribute >

    < ns1:attribute >

    < ns2:name > CITY < / ns2:name >

    < ns2: value > New York < / ns2: value >

    < / ns1:attribute >

    < / ns1:brickAttributes >

    < / ns1:orderItem >

    < / ns1:orderItems >

    < / ns1:order >

    < / GenericRequest >

    And I use an older version of Oracle (it's something I can't change unfortunately):

    SELECT * FROM version of v$.

    BANNER

    ----------------------------------------------------------------

    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64 bit Production

    PL/SQL Release 9.2.0.8.0 - Production
    CORE Production 9.2.0.8.0
    AMT for HP - UX: 9.2.0.8.0 - Production Version
    NLSRTL Version 9.2.0.8.0 - Production

    What is the best way to get the list name / value in a format like this with a SQL query?

    VALUE NAME

    ------- --------

    COUNTRIES WE

    CUST_ID 12345

    New York CITY

    Kind regards.

    Alberto

    Hello Alberto,.

    You can do it like this:

    with sample_data as)

    Select xmltype)

    '

    "http://WebServices.mysite.com/test" xmlns:ns ="http://webservices.mysite.com/test" xmlns:ns1 ="http://webservices.mysite.com/test" xmlns:ns2 = "http://webservices.mysite.com/test" >. "

    create

    TST123

    COUNTRY

    WE

    CUST_ID

    12345

    CITY

    New York City

    xmlDoc ')

    of the double

    )

    Select extractvalue (value (x), ' / ns1:attribute / ns2:name ',' xmlns:ns1 is "http://webservices.mysite.com/test", xmlns:ns2 ="http://webservices.mysite.com/test" "" ") as the name

    ExtractValue (value (x), ' / ns1:attribute / ns2: value ',' xmlns:ns1 = "http://webservices.mysite.com/test", xmlns:ns2 ="http://webservices.mysite.com/test" "" ") as the value

    of sample_data t

    table)

    xmlsequence)

    extract)

    t.xmlDoc

    , ' / GenericRequest / ns1:order / ns1:orderItems / ns1:orderItem / ns1:brickAttributes / ns1:attribute'

    ", ' xmlns ="http://webservices.mysite.com/test", xmlns:ns1 ="http://webservices.mysite.com/test"". "

    )

    )

    ) x

    ;

    Namespace URI appear to be the same in your example of XML, if this is really the case, you can simplify the query and use the same namespace by default in any of the query.

  • Retrieve values with a unique constraint

    All,

    It may be a stupid request and I think too speak of it. But, for some reason, I am unable to write a query to accomplish my task.

    I have the T table with some columns and the columns c1, c2, c3 are part of a composite unique constraint. Now I'm updating the value c3 from 52 to 51. But, when I do an update like:

    Update T set c3 = 51 where c3 = 52;

    I get a Unique constraint violation error.

    So, I need to know what are the values of repetition that might be causing this?

    Thanks in advance guys.

    34a22dde-3108-4F05-BE72-eb1043d28314 wrote:

    All,

    It may be a stupid request and I think too speak of it. But, for some reason, I am unable to write a query to accomplish my task.

    I have the T table with some columns and the columns c1, c2, c3 are part of a composite unique constraint. Now I'm updating the value c3 from 52 to 51. But, when I do an update like:

    Update T set c3 = 51 where c3 = 52;

    I get a Unique constraint violation error.

    So, I need to know what are the values of repetition that might be causing this?

    Thanks in advance guys.

    An inelegant way...

    select *
    from your_table tab1
    where (tab1.c1,tab1.c2) in
    (
    select tab2.c1, tab2.c2
    from your_table tab2
    where tab2.c3 = 52
    )
    where tab1.c3 = 51;
    
  • Retrieving values from XML

    Hi all
    I don't know how to extract the POLICY of XML value which is 25000.
    Here's what I got tired.

    SELECT extractvalue (COLUMN_VALUE, ' / Member/MemberId ') MemberID,.
    ExtractValue (' COLUMN_VALUE, ' / Member/membership/MembershipKey/Key / * ') PolicyID
    TABLE (XMLSequence (xmltype (')))
    < member >
    MRD000200 < MemberId > < / MemberId >
    < 00 > BenefitRecordId < / BenefitRecordId >
    < membership >
    < MembershipKey >
    < issuer > CBA < / transmitter >
    < key name = "ABC_DIVISIONS" Id = "A_5" / >
    < / MembershipKey >
    < MembershipKey >
    < issuer > CBA < / transmitter >
    < key name = 'POLICY' Id = "25000" / >
    < / MembershipKey >
    < MembershipKey >
    < issuer > CBA < / transmitter >
    < key name = "SECTION" Id = "E22" / >
    < / MembershipKey >
    < / membership >
    < / member >
    '
    () .extract ('/member')));

    I want the rest of output
    Member ID PolicyID SECTION
    MRD000200 25000 E22

    Please suggest.
    Thank you.

    One way is like this:

    SELECT extractvalue(COLUMN_VALUE, '/Member/MemberId') MemberID,
    extractvalue (COLUMN_VALUE, '/Member/Membership/MembershipKey/Key[@Name="POLICY"]/@Id') PolicyID,
    extractvalue (COLUMN_VALUE, '/Member/Membership/MembershipKey/Key[@Name="SECTION"]/@Id') SectionID
    FROM TABLE(XMLSequence(xmltype('
    
    MRD000200
    00
    
    
    ABC
    
    
    
    ABC
    
    
    
    ABC
    
    
    
    
    '
    ).extract('/Member')));
    
  • Retrieving values from comma delimited string from PL/SQL procedure

    Gurus,

    I would spend that time but I'm crunched for time. I have a value of varchar2 parameter delimited by commas that will take X number of delimited values.

    Can you guys recommend a simple method to extract these values so that I can use this in explicit cursor?

    I give points to useful and correct responses.


    Thanks again,
    Scott


    BTW, I use Oracle 10 g and 11i applications

    Published by: sreese on January 31, 2012 15:37

    Hello

    Check out these pages:
    http://www.Oracle-base.com/articles/Misc/DynamicInLists.php
    http://tkyte.blogspot.com/2006/06/varying-in-lists.html

  • Retrieving values of multi select checkboxes delimeted by ': '.

    A set of checkboxes in a form Apex product "V1:V2:V3" in the target field, these are the fields key from a dynamic selection lists based on a table that contains the key fields / value. Does anyone have a sample SQL fragment that will produce a record for each of the values?

    FORM_TABLE
    -------------------
    ID (1)
    CB_TARGET (V1:V2:V4)

    LIST_TABLE
    -----------------
    KEY_F (V1), (V2), (V3), (V4), etc.
    VALUE_F (value 1), (value 2), (value 3), (value 4...)

    Even if there is a single line in this example in the "FORM_TABLE", how can it be transformed to:

    1, V1
    1, V2
    1, V4


    Concerning
    H

    Does anyone have a sample SQL fragment that will produce a record for each of the values?

    Must be SQL? The simplest approach is probably to PL/SQL, using the apex_util.string_to_table function.

    For a solution purely SQL, use of any technique of string-to-row is appropriate to your situation.

  • IOM-retrieving values of Lookup definition

    I have a java program... I have used... certain values hardcoded for the connection parameters example say then to connect to an oracle... database or all using the EmailNotification API to send emails... I hardcoded some variables in the content of the e-mail.

    Now, I want these hardcoded values to be extracted from certain definition lookup. This involves a research xml definition must be created that contains these values... where these will be extracted

    How about this... how to create searches for xml information... and how to set up the code to extract the values frm them

    Have you tried this method: getLookupValuesForEncoded(). He said that you can get the values of equivalence by Code and Encoded values. Just checking. I never tried this method.

  • Problem with update of table (using the subquery to retrieve value)

    Hello
    I update a table based on the value of the subquery.
    Here's the update statement.

    UPDATING temp xm
    SET xm.col1 = (SELECT DISTINCT col1
    Of
    (SELECT col1, col2 COUNT (col2)
    FROM table2
    WHERE col1 = xm.col1
    AND col2 = xm.col2
    GROUP BY col1)
    where col2 in (select... in the table3)
    )
    WHERE xm.col5 = < value >
    AND xm.col6 = < value >

    When I run this statement I get following error.
    ORA-00904: "XM". "" Col1 ": invalid identifier.

    Can someone help me why I get this error?
    Why doesn't the main table alias in the subquery?

    Is it possible to avoid this / re - write the query in a different way?

    Thank you

    Published by: user552703 on November 2, 2009 20:42

    You can nest only 1 level deep (referring to the table to be updated).

    Have you looked at using the MERGE command? It is "easier" perform updates of this nature, assuming you are using a recent version of Oracle (9 or MORE).

  • SQL statement to retrieve value from the attribute using XPATH

    Hi all

    I think this is the right place to post this request since it is related to oracle and xpath.

    I'm writing a sql statement of xpath that will extract the value of the column attribute is what type of clob data. Here is the xml example (xml_content is the column name)



    < RAFSCREEN >
    < Home >
    < clientnumber reference = "123123" >
    < / servant >
    < RAFSCREEN >



    I need to output query should return 123123.
    I'm using query

    Select extract (xmltype (xml_content), 'RAFSCREEN, Domestic, @clientnumber') as clientnumber from table_name

    It will be very useful if someone answer this question.
    Thank you

    It is Possible...

    10g> with form_content
      2  as
      3  (
      4  select 212 form_content_id , '    ' xml_content from dual union all
      5  select 222 , '    '   from dual union all
      6  select 223 , '    '   from dual union all
      7  select 224 , '    '   from dual )
      8  select form_content_id, extractValue(xmltype(xml_content),'/RAF/XBorderRAF/ReviewReferences/@clientLegalName') as clientnumber
      9  from form_content ;
    
    FORM_CONTENT_ID CLIENTNUMBER
    --------------- --------------------------------------------------------------------------------------------------------------------------------------------
    212      ABC123
    222      ZY123
    223      IN123
    224      NL123
    
    4 rows selected.
    

    Your request (you need)

    select form_content_id, extractValue(xmltype(xml_content),'/RAF/XBorderRAF/ReviewReferences/@clientLegalName') as clientnumber
    from form_content ;
    
  • Column of the history is not retrieve value (Jdeveloper 11 g)

    Hello

    The columns of history are still null after I did insert on the table. My objects in view are based on object entities.

    I also tried running the AppModule service in the business model, remain null columns in the history. What can cause this? Any ideas would be greatly appreciated.

    More details:

    My Messages of IUCN has history columns, for example:

    < attribute
    Name = "DateInsr".
    ColumnName = "DATE_INSR."
    Type = "Oracle.jbo.domain.Timestamp"
    ColumnType = "TIMESTAMP".
    SQLType = 'TIMESTAMP '.
    TableName = "MESSAGES".
    IsUpdateable = "while_insert".
    HistoryColumn = "DateHistory".
    RetrievedOnUpdate = 'true '.
    RetrievedOnInsert = "true" >
    < DesignTime >
    < name Attr = "_DisplaySize" Value = "11" / >
    < / DesignTime >
    < data >
    < property
    Name = "ID".
    Value = "3d73c263-011f-1000-8017-89cf60e9a194:EntityObjectAttribute" / >
    < / data >
    < / attribute >


    And my view Electroniquesafficher object has associated source code:

    < ViewAttribute
    Name = "DateInsr".
    PrecisionRule = 'true '.
    EntityAttrName = "DateInsr".
    EntityUsage = "Messages".
    AliasName = 'DATE_INSR. '
    IsUpdateable = "false" >
    < data >
    < property
    Name = "ID".
    Value = "3d73c35d-011f-1000-803 b - 89cf60e9a194:ViewObjectAttribute" / >
    < / data >
    < / ViewAttribute >

    Thank you

    Valon

    3 things come to mind:

    (1) do you have database on the DATE_INSTR column triggers?

    (2) try to disable the refresh attribute EO after inserting/updating properties

    (3) test with a non-Timestamp column (just a date instead).

    CM.

Maybe you are looking for