Problem in update database record with torque

Can anybody correct my mistake. please........
Torque.init("E:/Upendra_working_directory/msh2.0/Torque.properties");
System.out.println("State:     " + Torque.isInit());
System.out.println("Connection Sucessfully........");
Criteria crit = new Criteria();
crit.add(AttachmentPeer.DISPOSITION, "buildfail09.xml");//selecting particular record
List attachment = AttachmentPeer.doSelect(crit);
System.out.println(attachment.size());
Attachment obj = (Attachment)attachment.get(0);
System.out.println("Attachment Location:     "+ obj.getAttachmentName());
System.out.println("Attachment MessageID     "+ obj.getMessageId());
obj.setAttachmentName("sssss"); //setting new value
AttachmentPeer.doUpdate(obj); //update
obj.save();
System.out.println(Attachment Location:     (afterupdate)"+ obj.getAttachmentName());
console print updated value.but if i check the table in database, it is not updated.
Thanks in advance

For anyone referencing this... I had missed adding the field to the MapBuilder so I can definitely suggest that you check the field is present everywhere it should be as no errors will be found if its only looking for the first 4 fields but you want 5 fields to be updated!!

Similar Messages

  • Update database record from email link or attachment ?

    Hello,
    Is there any way to send email from application with a link to update database record (like oracle workflow in selfservice).
    This is applied for approval process.
    Rather than the approval will log onto the application, he will click on the attachment or link then the update statement will fire.
    Is it  possible?

    You didn't add a forms version, so this is hard to guess. If you are on 10g and higher then you are using Oracle Application Server; in the installation there is the mod_plsql apache module included as well:
    http://docs.oracle.com/cd/B14099_19/web.1012/b14010/concept.htm
    so you could simply call a stored procedure via a HTTP request which updates your record. If you are on a lower version of forms you could make use of the free mod_owa module which you could configure with a plain apache installation on e.g. your database server: https://oss.oracle.com/projects/mod_owa/dist/documentation/modowa.htm
    you should implement some sort of authentication as well; both mod_owa and mod_plsql also have the facility to do so via +owa_custom+
    OWA_CUSTOM
    (see the OwaAuth directive in mod_owa for example).
    Of course you could do the very same via a custom Java Servlet; however you'd have to implement the database connection pool, the call of your stored procedure, the authentication e.g. as well which you would get for free with the apache modules.
    cheers

  • Problems updating BP record with SOAP

    Trying to update a business partner record with the SOAP env. below I get the error message: "Key not supplied". Where in the XML should I insert the key (CardCode) of the business partner I wish to update?
    <?xml version="1.0" encoding="UTF-16"?>
    <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
    <env:Header>
    <SessionID>A9DE2062-4F96-F9E1-DE3C-81E0DB23F174</SessionID>
    </env:Header>
    <env:Body>
    <dis:UpdateObject xmlns:dis="http://www.sap.com/SBO/DIS">
    <BOM>
    <BO>
    <AdmInfo>
    <Object>oBusinessPartners</Object>
    </AdmInfo>
    <BusinessPartners>
    <row>
    <CardCode>31177</CardCode>
    <FederalTaxID>987280115</FederalTaxID>
    </row>
    </BusinessPartners>
    </BO>
    </BOM>
    </dis:UpdateObject>
    </env:Body>
    </env:Envelope>

    For those interested I succsesfully managed to update a business partner record  with the follwing XML:
    (Replace $session_id with valid session id)
    [code]<?xml version="1.0" encoding="UTF-16"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
         <env:Header>
              <SessionID>$session_id</SessionID>
         </env:Header>
         <env:Body>
              <dis:UpdateObject xmlns:dis="http://www.soap.com/SBO/DIS">
                   <BOM>
                        <BO>
                             <AdmInfo>
                                  <Object>2</Object>
                                  <Version>2</Version>
                             </AdmInfo>
                             <QueryParams>
                                  <CardCode>30001</CardCode>
                             </QueryParams>
                             <BusinessPartners>
                                  <row>
                                       <ZipCode>5265</ZipCode>
                                  </row>
                             </BusinessPartners>
                        </BO>
                   </BOM>
              </dis:UpdateObject>
         </env:Body>
    </env:Envelope>
    [/code]

  • How to update database table with this new internal table

    hi
    i have a internal table having 8 records and it contains one record which was modified by user
    not i want this new record to be updated to the database table which was modified by the user
    how to do it pls suggest?
    i want to use index for comarision as using index will not have any problems like promary key etc
    like i want to capture the index for this table which was modified thr recoed index and use thi record indext to modify the database table
    or any other suggestion
    regards
    nishant

    Hi Nishant,
    Have an additional field in a table to indicate a change with which you avoid in updating the record modified by user.
    Regards,
    Madhu.

  • Strange problem when updating database

    I have an odd problem with a small application that is written in VB.NET, reading from and updating an SQL Express 2012 server.  The app pulls a datareader from a view and then loops through it and sends each record to an offsite db via an http post. 
    It then goes and marks the record sent using an update query to set a sync bit value in the main key table.  It then goes to the next record in the reader and repeats the process (or that was the idea). 
    What happens when it runs is that the update operation fails with a “Connection timeout or server instance not found “ error.  I have checked the usual culprits, it connects to the server to retrieve the reader OK using the same connect string, the
    user in the connect string has appropriate permissions to the table in question, etc.  The event log only shows an unhandled exception, the timeout message appears in the local debugger.  The exact same update runs successfully on another table for
    a different operation and on my dev machine, so it seems to be something about that particular table. 
    If I log in to SQL management studio as the user that I have in the connection string and update a record in the table using the same syntax as the update query in the application it succeeds.  Very strange.
    Troubleshooting is somewhat complicated by a need to be very careful with the machine that the problem is occurring on.  It is an in-production machine that I can only access via Logmein and is a 20 hour plane flight away.  So I have to be very
    cautious not to bork it up.  Any thoughts on how to proceed?

    I have an odd problem with a small application that is written in VB.NET, reading from and updating an SQL Express 2012 server.  The app pulls a datareader from a view and then loops through it and sends each record to an offsite db via an http post. 
    It then goes and marks the record sent using an update query to set a sync bit value in the main key table.  It then goes to the next record in the reader and repeats the process (or that was the idea). 
    What happens when it runs is that the update operation fails with a “Connection timeout or server instance not found “ error.  I have checked the usual culprits, it connects to the server to retrieve the reader OK using the same connect string, the user
    in the connect string has appropriate permissions to the table in question, etc.  The event log only shows an unhandled exception, the timeout message appears in the local debugger.  The exact same update runs successfully on another table for a
    different operation and on my dev machine, so it seems to be something about that particular table. 
    If I log in to SQL management studio as the user that I have in the connection string and update a record in the table using the same syntax as the update query in the application it succeeds.  Very strange.
    Troubleshooting is somewhat complicated by a need to be very careful with the machine that the problem is occurring on.  It is an in-production machine that I can only access via Logmein and is a 20 hour plane flight away.  So I have to be very cautious
    not to bork it up.  Any thoughts on how to proceed?

  • HELP! ISSUE UPDATING DATABASE RECORDS

    Hi All
    Thank you for looking at my post.
    I have a form which interacts with a SQL database.
    The process starts with one member of the team partially completing the form and submitting this.
    xfa.sourceSet.DataConnection.addnew(); on form initiaise function
    then
    xfa.sourceSet.DataConnection.update(); on the submit button.
    This process works great.
    The next member of the team then gets the information by entering the requirement in two textboxes.
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != "DataConnection")
    nIndex++;
    var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
    oDB.nodes.item(1).query.setAttribute("text", "commandType");
    oDB.nodes.item(1).query.select.nodes.item(0).value = "Select * from repairform where (A4 = '" + TextField11.rawValue + "') & (A5 = '" + TextField12.rawValue + "')";
    oDB.open();
    oDB.close();
    This then populates the form with the record relating to the search term including the partially completed information from the previous team member.
    The user then poplulates the rest of the form and suibmits
    xfa.sourceSet.DataConnection.update();
    This is where is fall down....
    On the final submission the form seems to update first record in the database not the one that is currently showing.
    I am relatively new to this so it may be me doing something stupid.
    Please help.

    Hi Paul
    Sorry, I now understand the global sripting
    My only issue now is updating the record.
    I can get the form to grab the information using the global variable
    I am just not sure how to update the record as xfa.sourceSet.DataConnection.update(); does not work (well it still updates the first record).
    Do I still have to close the oDB from the first call to grab the specific record and then re-open odb when I want to update or leave it open the whole time?
    Do I have to create an SQL command (such as the select command given when searching for a record) to update the records manually?
    e.g. UPDATE formname SET etc etc
    as this would be a long process with 122 data fields.
    any thoughts to finish this process off would be greatly appreciated.

  • Updating database table with DUPLICATE keys

    i have an internal table having data as follows.
    emp_id     name     date           proj_id  activity_id    Hours  Remarks
    101     Pavan    09.10.2007      123     1         2.00       Coding
    101     Pavan     09.10.2007   124     2         1.00        Documentation
    102     Raj     09.10.2007   123        3         6.00     Testing
    Now i need to update a Ztable with above mentioned data.
    The structure of the Ztable is as follows.
    Mandt     emp_id  name    date    proj_id   activity_id   Hours   Remarks
    NOte: i have ticked both check boxes for the field MANDT in table.
    Rest didnt select the check boxes.
    I believe now the field MANDT alone is a primary key for the z-table.
    NOw i have tried with UPDATE/INSERT statments to update the database table.
    But instead of inserting all the rows, the system is over writing on the same emp_id row.
    Even tried with the statments like INSERT INTO <Ztable> values <Internal table> ACCEPTING DUPLICATE KEYS.
    But its not getting inserted as a separate row in the table.
    Requirement is to insert the multiple rows in the database table without any over writing activity.
    Can anyone give me the code to do this?
    Regards
    Pavan

    Hi Pavan,
        Please let me know what are the key fields in your Ztable. Try with below code it may help you. change the "Ztablename" as your database table name and I_INTERNAL TABLE  as your internal table name. still you are facing the problem please let me know.
    lock the custom table before updating the table.
      CALL FUNCTION 'ENQUEUE_E_TABLE'
       EXPORTING
      MODE_RSTABLE         = 'E'
         TABNAME              = 'ZTABLENAME'
      VARKEY               =
      X_TABNAME            = ' '
      X_VARKEY             = ' '
      _SCOPE               = '2'
      _WAIT                = ' '
      _COLLECT             = ' '
       EXCEPTIONS
         FOREIGN_LOCK         = 1
         SYSTEM_FAILURE       = 2
         OTHERS               = 3
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        INSERT  ZTABLENAME FROM TABLE I_INTERNALTABLE ACCEPTING DUPLICATE KEYS.
        COMMIT WORK.
      ENDIF.
    unlock after updating the custom table After updation is done.
      CALL FUNCTION 'DEQUEUE_E_TABLE'
       EXPORTING
        MODE_RSTABLE       = 'E'
         TABNAME            = 'ZTABLENAME'
        VARKEY             =
        X_TABNAME          = ' '
        X_VARKEY           = ' '
        _SCOPE             = '3'
        _SYNCHRON          = ' '
        _COLLECT           = ' '

  • How to update database table with key field?

    Hello Experts,
    I have a database table with following fields
    MATNR   - Key
    SSOUR  -  Key
    KUNNR   - Key
    MENG1 
    MENG2
    MENG3
    And this table contains records like...
    MSD50001     R      1000001     5.30    2.30    5.25
    MSD50002     R      1000002     5.30    2.30    5.25
    MSD50003     R      1000003     5.30    2.30    5.25
    MSD50005     R      1000004     5.30    2.30    5.25
    MSD50004     R      1000005     5.30    2.30    5.25
    I have an internal table with same fields of above database table.
    MSD50001     A      1000001     5.30    2.30    5.25
    MSD50002     A      1000002     5.30    2.30    5.25
    MSD50003     A      1000003     5.30    2.30    5.25
    MSD50005     A      1000004     5.30    2.30    5.25
    MSD50004     A      1000005     5.30    2.30    5.25
    MSD50006     A      1000006     5.30    2.30    5.25
    I want to update the DB table with following internal table records.
    If internal table records = db table records are same then Update....else insert from internal table to db table.
    But here, SSOUR is key field so i am not able to use
    MODIFY dbtab from itab.
    It results me , entries in internal table are inserted into db table.
    So i have double records.
    Is there any statement which updates the key field? and if no fields in db table then insert it?
    Regards
    RH

    hi,
    u cannot update akey field.u can update only non key fields by using key field as a selection criteria.For example if u go to sm30 if u enter any table for inserting values, the key field will always be greyed out it is not succumbed to chnges.but u can insert value into ,if ur inserting and in the insert staemnet if  u have key field which is already present in the table it will return sy-subrc = 4 otherwise it will insert the record and return 0.
    eg for update :
    UPDATE zdm_wtyprof  SET upload_status = 'S'
                             WHERE spart = wa_upd-spart.
    here spart is the key field and it will update the status field in the table as S.
    if updated succesfully it will return 0.
    SIMILARLY U CAN USE select.

  • Program to update info record with material master data

    I am trying to determine if there is a standard SAP program that can be run as a batch file  to update the fields in the info record with the same fields that are in the material master?  ie:  Planned delivery time, Tolerance, purchasing group etc.

    Hi,
    There is no standard report or transaction that can do this.
    The data from these fields in the material master is brought in as a default to the info record when it is created. beyond this point the Info record is treated as being the correct data regardless of what happens to the material master data and so no updates occur in the standard system.
    It would not be difficult to build an LSMW job to copy the data from the material master to the info records and this would be the recommendation if you want to do this.
    Steve B

  • Serious Problem after update my 5800 with 40.0.005...

    Yesterday,I updated my 5800 with FW 40.0.005. I really impressed with the new easy way of move in touch screen but this version has a big problem that I considered.
    First,you have to set as a ring an .mp4 file or any video file and then lock your mobile 5800.
    When you have an incomming call the screen isn't working normally and it stops for miliseconds and starts again!
    When it happens the power of mobile increasing sharply and I am upset what it could happen if the call continue too much.
    Please somebody check it as soon as possible because it may do harm to our mobile by any explosion from this problem!
    For temporary solution a suggest not to set video files as a ringtone and if you want to do this don't lock your mobile which helps the video file to work normally.
    With regards,
    Stelios
    Solved!
    Go to Solution.

    Dear all
    kindly visit the below link and read all the actual exp b4 updatig to V40'
    NOKIA 5800 V40 BUGS
    there are alot of bugs in v40 and its is discover by the ppl like you. I Have MY nokia 5800-d1 with the RM-356 type having SWV:21.0.0.25.
    I am happy with it as i dont want to loose my data and time. It cost me alot
    THE PRIOR KNOWN BUGS IN V40 UPDATE
    NO RDS IN Radio Option (It was there in previous all version till V30&31) 
    Radio application can't be exited in the end
    some application icons are multiplied like in previous firmware version 
    Thumbs of contacts on HS are loading too long
    listing files in Settings/App mgr/Installation files takes way too long too
    The screen won't turn off when you plugged the power. Same that it won't turn off after you unplugged from power.
    Applications cannot be uninstalled. It says "Unable to start the installer" or something like that the radio application could not be quitted
    The new SW update doesn't allow me to install updates. It just says fail...
    Most of the time, the music player cant be closed and the song will show right on the home screen.  my screen backlight also not go off when plug in or unplug the charger
    Normally, when your 5800 full charged, it will beep and turn on the screen for couple of seconds. Now it won't turn off once this was triggered.
    In Messaging, message won't open on tapping ! The message seems selected, and doesn't respond to tapping(single or double) ... then options for message also doesn't open, only option is to exit messaging
    Frequently it happens I must remove SD before I can install/remove programs
    video player bugs (many video played improperly, sound played without images. or freeze at some point, but the sound continues
    Unable to install Opera Mini from Ovi Store and from Opera.com website download
    Regards
    Ahmad Ladhani

  • Update multiple records with update button???

    I was wondering if someone could explain how I can use the developer tool box to update multiple records at once.
    I have a repeat region with a title and a check box if the item is active. I would like to update all records of the table at once. I have see folks state the developer tool box can do this. However I am not sure how..
    I am using php with mysql dreamweaver cs3

    Hi Chris,
    that can be done with first creating an ADDT "dynamic list", means to apply ADDT´s "Dynamic List Wizard" to an empty page -- this list will provide checkboxes for all displayed records, and here´s where you can select the to-be-updated (or deleted) records.
    Besides creating the list, this wizard will also be creating a blank "form" php page in the same directory, which is by default "tied" to the created list -- you´ll just need to open this blank document with DW and apply ADDT´s "Create Dynamic Form Wizard" to it. However, this form will contain all required routines for single and multiple updates, depending on how many records you select in the list.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Problem in update database statistics

    when i run
    update database statistics
    when it completed it becomes red
    then i check it out
    log file  there i found error
    BR0301E SQL error -904 at location stats_ind_collect-3, SQL statement:                                                                       
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPECC"', INDNAME => '"SNAP~0"', ESTIMATE_PERCENT => NULL, DEGREE => NULL, NO_INVALIDATE => FALSE); END;                                                                      
    ORA-00904: : invalid identifier                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 10621                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 10645                                                                               
    ORA-06512: at line 1                                                                               
    BR0886E Checking/collecting statistics failed for index SAPECC.SNAP~0                                                                        
    BR0280I BRCONNECT time stamp: 2009-11-03 10.56.12                                                                               
    BR0301E SQL error -904 at location stats_ind_collect-3, SQL statement:                                                                       
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPECC"', INDNAME => '"SNAP~DSX"', ESTIMATE_PERCENT => NULL, DEGREE => NULL, NO_INVALIDATE
    ORA-00904: : invalid identifier                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 10621                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 10645                                                                               
    ORA-06512: at line 1                                                                               
    BR0886E Checking/collecting statistics failed for index SAPECC.SNAP~DSX                                                                      
    what will i do
    please suggest something

    Hi Anant ,
    I think you need to update your brtool patch as described in [Note 874911 - Workaround for ORA-31603 (BR0996E) during reorganization|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=874911].
    Hope it will solve your problem as it is due to bug in oracle.
    Regards,
    Gagan Deep Kaushal

  • ERP EHP4 Installation Problem in Update Database registry Phase.

    Hi,
    We are installing ERP 6.0 EHP4 Ready SR1 on AIX6.1 (6100-03-01-0921)  and DB2 v9.1.0.7.
    During installation in phase Update Database Registry, we are getting below error:
    SQL1042C  An unexpected system error occurred
    If any body has faced this error earlier, then please suggest.
    Thanks
    Sunny

    Hi,
    Please find below the latest entries in db2diag.log:
    2009-12-14-20.15.17.555605-330 I25354A304         LEVEL: Event
    PID     : 630830               TID  : 1           PROC : db2stop2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, DB2StopMain, probe:260
    DATA #1 : String, 43 bytes
    System controller termination is completed.
    2009-12-14-20.15.17.555785-330 I25659A383         LEVEL: Event
    PID     : 630830               TID  : 1           PROC : db2stop2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, DB2StopMain, probe:270
    DATA #1 : String, 26 bytes
    Active EDUs to be waited :
    DATA #2 : Hexdump, 4 bytes
    0x0FFFFFFFFFFFCF70 : 0000 0001                                  ....
    2009-12-14-20.15.17.565945-330 I26043A381         LEVEL: Event
    PID     : 630830               TID  : 1           PROC : db2stop2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, DB2StopMain, probe:280
    DATA #1 : String, 24 bytes
    There is no active EDUs.
    DATA #2 : Hexdump, 4 bytes
    0x0FFFFFFFFFFFCF70 : 0000 0000                                  ....
    2009-12-14-20.15.17.830570-330 E26425A301         LEVEL: Event
    PID     : 630830               TID  : 1           PROC : db2stop2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, DB2StopMain, probe:911
    MESSAGE : ADM7514W  Database manager has stopped.
    STOP    : DB2 DBM
    2009-12-14-20.15.24.936396-330 I26727A1630        LEVEL: Event
    PID     : 545014               TID  : 1           PROC : db2start
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, sqleStartStopSingleNode, probe:1130
    DATA #1 : String, 31 bytes
    /db2/db2ged/sqllib/adm/db2star2
    DATA #2 : Hexdump, 256 bytes
    0x0FFFFFFFFFFF9C20 : 2F64 6232 2F64 6232 6765 642F 7371 6C6C    /db2/db2ged/sqll
    0x0FFFFFFFFFFF9C30 : 6962 2F61 646D 2F64 6232 7374 6172 3200    ib/adm/db2star2.
    0x0FFFFFFFFFFF9C40 : 4E4F 4D53 4700 0000 0000 0000 0000 0000    NOMSG...........
    0x0FFFFFFFFFFF9C50 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9C60 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9C70 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9C80 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9C90 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CA0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CB0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CC0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CD0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CE0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9CF0 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9D00 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    0x0FFFFFFFFFFF9D10 : 0000 0000 0000 0000 0000 0000 0000 0000    ................
    2009-12-14-20.15.25.077684-330 E28358A856         LEVEL: Warning
    PID     : 602312               TID  : 1           PROC : db2star2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, license manager, sqllcRequestAccess, probe:1
    MESSAGE : ADM12007E  There are "89" day(s) left in the evaluation period for
              the product "DB2 Enterprise Server Edition". For evaluation license
              terms and conditions, refer to the IBM License Acceptance and License
              Information document located in the license directory in the
              installation path of this product. If you have licensed this product,
              ensure the license key is properly registered. You can register the
              license via the License Center or db2licm command line utility. The
              license file can be obtained from your licensed product CD.
    2009-12-14-20.15.25.174108-330 E29215A384         LEVEL: Warning
    PID     : 667782               TID  : 1           PROC : db2wdog 0
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, routine_infrastructure, sqlerInitFmpTable, probe:30
    DATA #1 : String, 16 bytes
    agentCachingFmp:
    DATA #2 : String, 3 bytes
    OFF
    DATA #3 : String, 5 bytes
    Flag:
    DATA #4 : Boolean, 1 bytes
    false
    2009-12-14-20.15.26.288917-330 E29600A1208        LEVEL: Event
    PID     : 602312               TID  : 1           PROC : db2star2
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, base sys utilities, DB2StartMain, probe:911
    MESSAGE : ADM7513W  Database manager has started.
    START   : DB2 DBM
    DATA #1 : Build Level, 152 bytes
    Instance "db2ged" uses "64" bits and DB2 code release "SQL09017"
    with level identifier "02080107".
    Informational tokens are "DB2 v9.1.0.7", "s090308", "U823509", Fix Pack "7".
    DATA #2 : System Info, 224 bytes
    System: AIX gpldeve1 1 6 00C1EF854C00
    CPU: total:8 online:4 Threading degree per core:2
    Physical Memory(MB): total:14336 free:10662
    Virtual  Memory(MB): total:35328 free:31640
    Swap     Memory(MB): total:20992 free:20978
    Kernel   Params: msgMaxMessageSize:4194304 msgMaxQueueSize:4194304
                     shmMax:68719476736 shmMin:1 shmIDs:131072
                     shmSegments:68719476736 semIDs:131072 semNumPerID:65535
                     semOps:1024 semMaxVal:32767 semAdjustOnExit:16384
    Cur data size (bytes)  = 0x7FFFFFFFFFFFFFFF
    Cur stack size (bytes)  = 0x7FFFFFFFFFFFFFFF
    Cur core size (bytes)  = 0x0000000077359400
    nofiles (descriptors)  = 0x7FFFFFFFFFFFFFFF
    2009-12-14-20.18.03.426764-330 E30809A597         LEVEL: Warning (OS)
    PID     : 544840               TID  : 1           PROC : db2set
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, oper system services, sqloqcurdir, probe:100
    MESSAGE : ZRC=0x840F0001=-2079391743=SQLO_ACCD "Access Denied"
              DIA8701C Access denied for resource "", operating system return code
              was "".
    CALLED  : OS, -, unspecified_system_function
    OSERR   : EACCES (13) "Permission denied"
    DATA #1 : File name, 0 bytes
    Object not dumped: Address: 0x0FFFFFFFFFFFE688 Size: 0 Reason: Zero-length data
    2009-12-14-20.18.03.429260-330 I31407A290         LEVEL: Event
    PID     : 544840               TID  : 1           PROC : db2set
    INSTANCE: db2ged               NODE : 000
    FUNCTION: DB2 UDB, oper system services, db2set_main, probe:40
    CHANGE  : CFG DB2SET: DB2_WORKLOAD: From: "SAP" To: "SAP"
    Thanks
    Sunny

  • Problem viewing videos I recorded with the phone

    When trying to view videos I recorded with the phone, It gives me a message saying it is impossible to view this multimedia file format!
    It has been recorded with the phone and it can't watch it on the phone!? It doesn't recognize its own recording format
    Help please

    If the format is in 3GP you can view it with a player called VLC (http://www.videolan.org/vlc/), or can try a video conversion program to convert it into a format your computer can read. Once such program can be found here http://www.avs4you.com/AVS-Video-Converter.aspx
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Problem when updating af:table with new records

    Hi,
    I have a page that shows two tables from the same DB table but with different VOs.
    Table1 displays records where date_column is within the current month, table2 displays all records.
    The problem is that when I add new record and return to the page, I find out that the new record has been added to both tables, it’s shown in table1 even though its date is not within this month.
    When I run the page again the problem is solved and everything is in the right place !!
    How can I fix this?

    Hi,
    you will have to re-query the iterators because you add the new row to a VO - which is an iterator - that wont filter your input (instead you add to a filtered iterator). However, its strange that both tables show that value because if these are different VO they should be independent. Only if they are instances of the same VO tehy are expected to show the same data
    Frank

Maybe you are looking for

  • ICal in Day view doesn't show hours, but Days for the hours?

    Ok, so I have been trying to figure this out but I cannot find the answer. In iCal, I cannot change the hour of a new event. It only allows me to change the min. So I went into the Day view to try and move the events to the correct hours and all it s

  • Delete rule not being generated in DDL

    Hi, I've only recently started using SQL Developer Data Modeler (coming from the Designer world), and it's been a good learning experience. There's a piece that I can't seem to figure out though, and it's related to the generation of DDL for foreign

  • How to get parallels to work on a mac

    Hi all, I need to have windowns on my Macbook for a little work and I just went to the Apple store and bought Parallels software. What do I do now to have windows please?

  • Framed-IP-Address in RADIUS Access Request for WLC web-auth users

    We have a web-auth WLAN (with 7.6.130.0 software on a 2504 WLC) configured to authenticate users through RADIUS. The Framed-IP-Address attribute, representing the client device's IP address is sent in the Accounting Request, as expected. However, thi

  • Http request error in lvs report viewe

    i have installed license validate service , client and report viewer. when i go to view any report it gives error "HTTP request error"