OATM stucks on fnd_lobs table

Hello,
We use 10gR2 DB and 11i application version.
I ran the migration utility, and the progress is stuck with 99.24% with one OATM utility process cmd window. (the one with the DO NOT CLOSE label).
I started the execution of the migration commands yesterday around 16:45. since about 23:00 until now (16:00) the process is on the 99.24% mark.
I queried the fnd_ts_mig_cmds table in the following way:
select * from fnd_ts_mig_cmds where start_date is not null and end_date is null
and I get one row (I wrote only relevant info):
start_date
16:51
owner
APPLSYS
OBJECT_NAME
FND_LOBS
OLD_TABLESPACE
APPLSYSD
NEW_TABLESPACE
APPS_TS_MEDIA
MIGRATION COMMAND
ALTER TABLE "APPLSYS"."FND_LOBS" MOVE TABLESPACE APPS_TS_MEDIA LOB (FILE_DATA) STORE AS (TABLESPACE APPS_TS_MEDIA CHUNK 8192 NOCACHE) NOPARALLEL NOLOGGING
So from that and from GRID control , I understand that the process is stuck on this table - for almost 24 hours.
Does anyone else have this problem? Can anyone suggest what can I do?
Thank you!

Hi;
Is there any other message at alert.log? PLease see:
Oatm Conversion Is Hanging While Generating Migration Command [ID 445020.1]
My OATM Migration Appears to Have Hung. How Can I Monitor It's Progress? [ID 1073783.1]
Also see:
OATM is failing with ORA-01652: unable to extend temp segment by 16 in tablespace APPS_TS_MEDIA [ID 341285.1]
Regard
Helios

Similar Messages

  • Error while uploading files into FND_LOBS table

    Hi All,
    Hope you are all well!!
    I am new to OAF.Developing a standard upload page.
    Getting the below error when i am trying to uploading the file in to FND_LOBS table.
    *"Error - Attribute FileId in xxsymuploadAM.xxsymuploadVO is required"*
    The page was opening successfully but when trying to submit the file into fnd_lobs table getting the error.
    For this i have created AM, EO and EO based VO.
    Her is my code--------------------
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package xxsymupload.oracle.apps.fnd.upload.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.OAException;
    import oracle.jbo.Row;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageFileUploadBean;
    import oracle.apps.fnd.framework.webui.OADataBoundValueViewObject;
    * Controller for ...
    public class xxsymupload1CO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am=pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("xxsymuploadVO");
    if (!vo.isPreparedForExecution())
    vo.executeQuery();
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    row.setAttribute("FileFormat","IGNORE");
    row.setAttribute("UploadDate", am.getOADBTransaction().getCurrentDBDate());
    row.setAttribute("ProgramName", "xxsymUpload");
    OAMessageFileUploadBean uploadBean = (OAMessageFileUploadBean)webBean.findChildRecursive("fileUpload");
    OADataBoundValueViewObject displayNameBoundValue = new OADataBoundValueViewObject(uploadBean, "FileData");
    uploadBean.setAttributeValue(DOWNLOAD_FILE_NAME,displayNameBoundValue);
    OADataBoundValueViewObject contentBoundValue = new OADataBoundValueViewObject(uploadBean, "FileContentType");
    uploadBean.setAttributeValue(FILE_CONTENT_TYPE, contentBoundValue);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if (pageContext.getParameter("cancelButton") != null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.getTransaction().rollback();
    pageContext.forwardImmediately("OA.jsp?OAFunc=OAHOMEPAGE",null,OAWebBeanConstants.KEEP_MENU_CONTEXT,null,null,false,OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    else if (pageContext.getParameter("submitButton") != null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.getTransaction().commit();
    OAViewObject vo = (OAViewObject)am.findViewObject("xxsymuploadVO");
    oracle.jbo.domain.Number fileId = (oracle.jbo.domain.Number)vo.getCurrentRow().getAttribute("FileId");
    String fileUpload = (String)vo.getCurrentRow().getAttribute("FileName");
    OAException confirmMessage = new OAException("File "+fileUpload+" uploaded succesfully with ID "+fileId+".",OAException.CONFIRMATION);
    pageContext.putDialogMessage(confirmMessage);
    pageContext.forwardImmediately("OA.jsp?page=/xxsymupload/oracle/apps/fnd/upload/webui/xxsymuploadPG",null,OAWebBeanConstants.KEEP_MENU_CONTEXT,null,null,true,OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    Appreciate quick response!!
    Thanks,
    Sateesh

    In EO Impl java, set the file id and other mandatory fields, something like below. You can also search OAF forum for more details.
    public void create(AttributeList attributelist)
    super.create(attributelist);
    try
    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)getOADBTransaction();
    String s = "select fnd_lobs_s.nextval from dual";
    ViewObject viewobject = oadbtransactionimpl.createViewObjectFromQueryStmt(s);
    Number number;
    Row row;
    for(number = null; viewobject.hasNext(); number = (Number)row.getAttribute(0))
    row = viewobject.next();
    if(number != null)
    setFileId(number);
    setFileFormat("text");
    setUploadDate(oadbtransactionimpl.getCurrentDBDate());
    } else
    throw new OAException("AK", "AK_CANNOT_GET_FILEID");
    viewobject.remove();
    catch(Exception exception)
    throw new OAException("AK", "AK_FND_LOBS_NOT_CREATED", exception);
    Thanks
    Shree

  • Using File Server instead of FND_LOBS table

    Dear Experts
    Hi,
    we use R12.1 with UP-UX Itanium.
    the approach of our company about Attachments in organization mades FND_LOBS table so big.
    I couldn't change this approach to attach many file in ERP so I searched in google and metalink how can we reduce FND_LOBS size
    but there is no useful information to do this
    it seems that this problem is Unavoidable.
    So I want to know if there is a way to using FILE SERVER in ebs 12.1.1 or any useful plan to reduce FND_LOBS size or its effects?
    Thanks
    Best Regards

    I couldn't change this approach to attach many file in ERP so I searched in google and metalink how can we reduce FND_LOBS size
    This topic was covered many times in the forum before, please see previous threads for the MOS Docs you need to follow.
    https://community.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=Purge+AND+FND_LOB
    https://community.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=Size++AND+FND_LOBS
    Thanks,
    Hussein

  • Records stuck in rcv_transactions_interface table

    RVTTH-115f: Subroutine process_transaction() returned error
    Cause: Subroutine process_transaction() returned an internal error.
    Action: Note this error number and the actions you are trying to perform. Contact your system
    -- This is the error meassage in po_interface_errors table for the records stuck in rcv_transactions_interface table. Unable to deliver the receipts made against PO.
    Patch as suggested in metalink is already in place. Can someone please me?

    Can you do this and let us know the results?
    1. Change the Proflle value for RCV: Processing Mode to Batch
    2. Change the profile value for RCV: Debug Mode to Yes
    3. Perform transaction
    4. Run Receiving Transaction Processor
    5. Check the log file at the bottom.
    6. If you can send the log file,. we can assist.
    Also as a clue this error looks like is coming back from Inventory. Please check whether the item controls are correctly setup and item attributes are enabled correctly. Your code combinations are all still enabled that are used in the po distributions and so on.
    Thanks
    Nagamohan

  • Mail stuck in "Reading table of contents" mode

    Hello,
    Background: I recently upgraded from prehistoric OS 9.2.1 to OS X. I used a DVD version bought on eBay from a non-Apple source. I set up Mail 1.3.4 as directed. It all seemed to work well for a while.
    Problem: I started noticing trouble when I began importing my old e-mails from the program I used to use, Outlook Express 5 (now operating in Classic). Some of the folders would import, but others would not.
    OK, I can live without some of those e-mails, but now, a worse problem has arisen. First, when I open Mail from the dock, the mailbox doesn't appear. I soon realized that File>New Viewer Window remedied that, though I thought it was strange. But once I bring up that new window, the Mail application is permanently stuck in "Reading table of contents" mode, with the little spinning circle of lines at the right going on forever.
    I can click around -- it's not completely frozen. It just won't retreive mail. When I try to quit, Command-Q doesn't work. I have to force-quit.
    I've been making do with webmail, making sure to delete all excess spam e-mails.
    Accounts: In case this helps, it is a POP-type account. Within that are two mailboxes. It has a .pop outgoing server and .stmp incopming server.
    What should I do??
    Thanks,
    quaco

    Just bumping this up. I'm afraid I am still having this problem.

  • Audit coulmns in fnd_lobs table

    Hi all
    i have created one entity object from fnd_lobs table.
    fnd_lobs table doesnt have audit columns .so when i compile this entity it gives an error saying
    entity class shud be defined as abstract as there is no method with signature..setUpdateLogin().etc.
    my Q is how can get rid of this ,i cant modify oracle seeded table fnd_lobs.
    pls help
    naveen

    and is the column where you are trying to store the file is part of your custom table ?
    you can have a BLOB column in your custom table and have a VO attribute of the same data type.
    Thanks
    Tapash

  • Purge FND_LOBS table (attachmentolders than 2 years) to cleanup table space

    Hi,
    I have a requirement to purge FND_LOBS table (Attachments which is older than 2 years) to cleanup table space.
    Please advise me which is the best way to purge FND_LOBS.
    I have already gone through the below Notes, but no luck..
    871721.1 - How To Purge FND_LOBS?
    555463.1 - How to Purge Generic or Purchasing Attachments from the FND_LOBS Table
    298698.1 - Avoiding abnormal growth of FND_LOBS table in Applications 11i
    303709.1 - Reclaiming unused space in APPLSYSD tablespace
    555463.1 - How to Purge Generic or Purchasing Attachments from the FND_LOBS Table
    Thanks,
    Genoo
    Edited by: Geno on Apr 1, 2013 5:32 AM

    Geno wrote:
    None of the Notes solve my requirement, as i do not see an option to Purge only the data which is older than 2 years.
    Thanks,
    GenooPurging FND_LOBS table can done by running "Purge Obsolete Generic File Manager Data" concurrent program -- Concurrent Processing - How To Add The Concurrent Program "Purge Obsolete Generic File Manager Data" To The Sysadmin User. [ID 216541.1]
    You can find more details about the parameters for this concurrent program in (Questions on Purge Obsolete Generic File Manager Data [ID 1165208.1]).
    Thanks,
    Hussein

  • Mail - Stuck in Reading Table of Contents and Copying Messages

    Mail has been stuck in this loop for the past week. It is either reading table of contents or copying messages. It doesn't stop no matter how long I have it running. I wasn't able to send mail, but somehow that started working. I cannot delete messages (or they seem to delete but come back on restart). I also must force quit to get out of it. Does anybody have any ideas? Help!!!!

    One account, IMAP to my university server. Tried Rebuild.
    Tried Cache cleaners. Hard disk is 50% full. Inbox has on
    the order of 50 messages in it at any one time.
    My wife's iMac has the same problem (one account, IMAP,
    to mac.com). She has OS 10.4.4
    By the way, I also expereince the mysterious "mail marked
    as unread" now...never happened until the past few weeks.

  • Stuck in IDCS4 Table H*ll--Please Help

    I'm working on updating a parts catalog for my company (800+ pages) and it's my first big project using IDCS4. We've separated each section into an individual document (most between 50-80 pages, but a couple of the sections are 100+ pages).
    Due to the nature of the project, I've attempted to make my documents as flexible as possible.  Over the next few years we will be inserting new information at different places in the catalog, as we begin to carry new items.  Because of this possibilty, the current information for each section is placed in an single table that overflows from the first page through the last page of that document.
    The problem I keep running into, is that the table rows for different parts of the same document have to be formatted differently to achieve a consistent appearance. There are a few parts that have additional information that requires splitting and/or merging table cells.
    Here are a few issues I've come across:
    * When I try to Shift + drag a cell border, ID will not allow me to drag it past the threshhold of another cell in a higher or lower row.  For example, I have a 3 inch cell in Row 2 of my document that begins at 0" and ends at 3".  Further down at row 7, I have divided the 3" row vertically.  The right half of the divided cell has been merged to the adjacent cell (to the right).  When I try to drag the left wall of this cell toward the left, ID won't let me drag it past the 3" mark on the ruler (in fact, it stops about 1/16" short).  Is there a way to override this and freely drag the cell wall to whatever size I want it to be?
    * My other issue is attempting to paste rows from one ID document to another.  Occasionally, ID allows me to do it, but it plays heck with my formatting when it does.  Most times, even when the rows seem to be right at or very close to the same dimensions, the Paste function is not available after I Cut or Copy the rows from the older document.
    Can anyone provide advice/solutions or even explain to me that I'm going about this all wrong, or have I come across an inherent weakness of InDesign's capabilities.  I understand that an application that does every single thing you'll ever want or need isn't out there, but it seems like it's those things I want or need most that ID refuses to do.
    Thanks in advance!
    RW

    Thanks for all of your help.  I checked out catalog plugins and downloaded a couple of the trial versions.  They seem to be a great tool and something I'll probably pursue in the future.  Unfortunately, their parameters weren't compatible with the amount of work I've already put into this project and in the interest of time-saving, I'm going to pursue another path for this version of the catalog so I can take my time working on the prep it would take make the most of the catalog plugins.
    I did some homework on the linked text frames solution and have proceeded down that path.  Due to some of the formatting (some of the pages were a lot more difficult than the sample I uploaded), I'm still using tables to preserve a consistent look, but I've broken down each product section into a separate table (of no more than 20-30 product listings per table).  I don't know why that didn't occur to me earlier, I guess I was in the dark about the reflow feature that keeps objects flowing consecutively.
    One other problem I'm having that I haven't found a suitable answer to:  When pasting rows from one table to another, most help databases I've seen praise the flexibility of InDesign to copy from one table and *as long as there are enough rows to add the new info*, pasting from one table to another is a snap.  However, I've found limited success with this feature.  I'm not sure if it has to do with my tables, some of which became very complex (through splitting and merging cells to preserve a consistent appearance throughout a section), but InDesign will allow me to cut rows from one table and insert them as a new table into a text frame; however, when I try to copy more rows from the first table (formatted the same as the first rows that I cut), the Paste feature is inactive.  Other than the first series of rows being cut from one table and pasted as a new table, their is no difference between them and the next section of rows I'm attempting to add to the end of the table.
    Any thoughts on the seeming inconsistency?
    RW

  • Mail gets stuck in apex_mail_queue table temporarily

    Hi,
    I'm using apex version 4.1.0.00.32 on 11gr2 Oracle database. When sending emails using the apex_mail package I get no errors, but emails are 'stuck' in the apex_mail_queue. It takes about 2 -to- 3 hours to actually receive the intended email. Originally I thought this could be ACL or SMTP related error, but don't think so. I tried issuing the below commands after the apex_mail.send call, but is no help.
    {code}
       APEX_MAIL.PUSH_QUEUE;
       APEX_MAIL.PUSH_QUEUE_BACKGROUND;
    {code}
    The emails are eventually delivered but there seems to be a lag time. This happens Only on one of the Databases instances and works fine on a different instance. I have compared Instance Settings between these two databases and can't notice anything. Can't really figure out why ?
    {code}
    BEGIN
       wwv_flow_api.set_security_group_id (XYZ);
       apex_mail.send (
          p_to          =>   '[email protected]',
          p_from        => '[email protected]',
          p_body        => 'Send email from Apex',
          p_body_html   => 'Send email from Apex',
          p_subj        => 'Send email from Apex',
          p_cc          => '',                            
          p_bcc         => ''
       APEX_MAIL.PUSH_QUEUE;
       APEX_MAIL.PUSH_QUEUE_BACKGROUND;
       COMMIT;
    END;
    {code}
    Anyone any ideas?
    Thanks,
    Prashanth

    Jari,
    I have commented out the call to PUSH_QUEUE_BACKGROUND, but problem still exists.
    Emails are sent when I run the UTL_SMTP package, but not with APEX_MAIL package. I was assuming APEX_MAIL is just a wrapper around UTL_SMTP Package but it doesn't appear to be the case. As a result all our IR report subscriptions are stuck in the Mail queue and not being delivered at all. As I've mentioned before the issue is Only with one of the Database instances, it works fine in other but I've the problem just with one instance.
    I verified all the Instance settings logging in as Apex Administrator but really can't figure out what the issue here is. Appreciate any help !!
    Thanks!
    Prashanth

  • Mail gets stuck in apex_mail_queue table

    Hi there,
    I am trying to send the email using apex_mail.send package.
    The email gets sent to the person I am intending to send but some time... Mind you not every time, there are some records that gets stuck in apex_mail_queue and it sends the same email 3 to 4 times.
    I don't understand why this is happening!. Please help me with your suggestions..
    Thanks
    Nayeem

    Hi Nayeem,
    Are you using an application in apex.oracle.com or a local application? In case it's local, can you tell us what the error message is for the mails that get stuck in apex_mail_queue? (you can take a look at the mail queue using the apex administration services, Manage Instance -> Mail Queue). By the way, if you try to send the same email a number of times and the sending is not successful, the messages remain in the queue as you commented, so when the next time to flush the queue and send the emails comes, if APEX can do it successfully, then it will send all the copies of the emails queued. Perhaps that is the reason why you're getting multiple copies of the same message?
    Regards,
    Sergio

  • Payables data stuck in gl_interface table

    Created Invoices in Payables.
    Validated
    process run for create accounting & trasfer to gl
    resulted in warning with message in log:
    SHRD0008: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    R_CLPR0003: Unprocessed records exist in GL_INTERFACE for period JUN-10
    Any help will be highly appreciated.
    Regards,
    Umair

    common issues for this are,
    check if there is any security rule in place which is restricting the subledger transactions to get imported to GL.
    check any CVR might have been put after the invoice was accounted and before being transferred to GL.
    check if any CCID got invalid.
    there is a related article at,
    http://oracally.blogspot.com/2010/02/ap-period-is-not-closing-due-to.html
    cheers,

  • Report with a Download link for a Pdf stored in Blob in database FND tables

    We attach a pdf file in the Receivables invoices in Oracle EBS. We use APEX to report from EBS tables. We have a requirement to have a APEX report to display the pdf attached to the invoices with a capability to download the pdf. These pdf are stored in a blob column in fnd_lobs table.
    Any pointers on how to approach is highly appreciated.
    Thanks
    Jo

    check this How to Upload and Download Files in an Application
    let me know if you have any doubts

  • Reflect in other tables

    Hi,
    We are building a new application ,for that we need few tables in the back end.
    here are few of them.
    CREATE TABLE PWA(
    PROJECT_NUMBER VARCHAR2(200),
    PROJECT_NAME VARCHAR2(200),
    WBS_LEVEL VARCHAR2(200),
    TASK_NUMBER VARCHAR2(200),
    TASK_NAME VARCHAR2(200),
    TASK_TYPE VARCHAR2(200),
    ACTIVITY_TYPE VARCHAR2(200),
    PERSON_IN_CHARGE VARCHAR2(200));
    insert into pwa values('Test','IRAQ','1','1','1 호기','WBS','None','Input');
    insert into pwa values('Test','IRAQ','2','101','TURBINE','WB','None','');
    insert into pwa values('Test','IRAQ','3','10101','HIP','WB','None','');
    insert into pwa values('Test','IRAQ','4','1010101','HIP','WB','None','');
    CREATE TABLE MEMBER_INFO(
    MEMBER VARCHAR2(200),
    ASSIGNMENT VARCHAR2(200),
    ROLESPRIVILEGES VARCHAR2(200));
    insert into member_info values('Laxman ','member_info ','Read/write/delete');
    insert into member_info values('Laxman ','SKELETON ','Read/write/delete ');
    insert into member_info values('Naveen','PJT DOC','Read/write/delete ');
    insert into member_info values('Naveen','Test','Read/write/delete ');
    insert into member_info values('Naveen','Test','Read/write/delete ');
    insert into member_info values('Naveen','Test','Read/write/delete ');
    insert into member_info values('Naveen','Test','Read/write/delete ');
    insert into member_info values('Hari','PJT DOC','Read/write/delete ');
    I have another set of tables with same table structure like PJT_PWA,PJT_member_info,etc.
    My requirement is ,whenever there are some records(For ex: 10 records) inserted to PWA ,those records should be appear in PJT_PWA table.
    Thanks in advance.
    Ragards,
    Laxman

    >
    Since I am new to this part,Could you please give me some sample code for one set(PWA,PJT_PWA).
    >
    Nothing like the examples in the documentation to demonstrate how to use the functionality.
    See Examples of Trigger Applications in Chap 9 Using Triggers in the PL/SQL Language Reference
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28370/triggers.htm#i1007170
    >
    The following example demonstrates a trigger that audits modifications to the emp table for each row. It requires that a "reason code" be stored in a global package variable before the update. This shows how triggers can be used to provide value-based auditing and how to use public package variables.
    >
    The example following that quote uses two tables, Emp99 and Audit_employee but you can use your own set such as PWA and PJT_PWA instead.
    That example is followed by a lot of other examples.
    First get the doc example working AS IS. Then copy the code and try to modify it to match your tables and columns.
    If you get stuck post the table DDL and the code and we can help. But we aren't going to write the code for you.

  • Messages stuck in OAI schema

    Hi,
    Adapter is up and running but 3k messages are stuck in OAI tables and are not published to the adapter. Records exist in messageobjecttable and aotable.
    Stopping and starting adapter doesn't reslove this - bouncing db doesn't either.
    I can publish current messages successfully - but these 3k still sit in the tables.
    Anyone know how to get these messages moving?
    Regards
    smudger

    Hi,
    Be sure to set the "srcAppName" as your Publishing Adapter name when you call the "Pub_" procedure.
    Failure to do this will mean that your Publishing Adapter will not pick up any messages in the OAI schema.
    E.g.
    DECLARE
    p_emp_num VARCHAR2(10) := '1234X';
    p_srcAppName VARCHAR2(20) := 'MY_PUB_DB_ADAPTER';
    aoID NUMBER := NULL;
    messageObjectID NUMBER := NULL;
    BEGIN
    -- Call the crMsg_ (Create Message) procedure
    My_Pub_Package.crMsg_My_Message_OAI_V1(
    messageObjectID => messageObjectID,
    aoid => aoID,
    EMP_NUM => p_emp_num);
    -- Call the pub_ (Publish Message) procedure
    My_Pub_Package.pub_My_Message_OAI_V1(
    messageObjectID => messageObjectID,
    srcAppName => p_srcAppName);
    COMMIT; -- Don't forget this!!
    END;
    Hope this helps
    Yan

Maybe you are looking for