Oracle locking question

ADDR KADDR SID TY ID1 ID2 LMODE REQUEST CTIME BLOCK
00000004160D72B8 00000004160D7310 1966 AE 100 0 4 0 499 0
00000004160D7FD0 00000004160D8028 1966 TO 81148 1 3 0 498 0
FFFFFFFF7B646EB0 FFFFFFFF7B646F10 1966 TM 79582 0 3 0 23 0
0000000414E1A040 0000000414E1A0B8 1966 TX 393244 678662 6 0 23 0
I am getting above locks when i am ussing select for update no wait from oracle forms and it lock the whole table I can not under stand why.
When issue the same select for update nowait from sql prompt I am getting following
ADDR KADDR SID TY ID1 ID2 LMODE REQUEST CTIME BLOCK
00000004160D7798 00000004160D77F0 1997 AE 100 0 4 0 75 0
FFFFFFFF7B646EB0 FFFFFFFF7B646F10 1997 TM 79582 0 3 0 44 0
0000000414F002E8 0000000414F00360 1997 TX 655387 838567 6 0 44 0
and after above when I issue another SQL select for update for different row on same table the second session is:
ADDR KADDR SID TY ID1 ID2 LMODE REQUEST CTIME BLOCK
00000004160D71E8 00000004160D7240 1982 AE 100 0 4 0 4123 0
FFFFFFFF7B645E78 FFFFFFFF7B645ED8 1982 TM 79582 0 3 0 17 0
0000000414E7DDE8 0000000414E7DE60 1982 TX 589848 710577 6 0 17 0
Can someone tell me what is
1. Lock type TO and AE
2. Why locky type TO is there in oracle forms
3. why issuing the same select for update nowait from oracle form does not allow any other session sql or from oracle forms to get the lock on row?
Thank you.

>
I sill not able to get what TO lock type is, this was not in the following:
>
See the Database reference
http://docs.oracle.com/cd/E14072_01/server.112/e10820/enqueues.htm#g950013
>
D Oracle Enqueue NamesThis appendix lists Oracle enqueues. Enqueues are shared memory structures (locks) that serialize access to database resources. They can be associated with a session or transaction. Enqueue names are displayed in the LOCK_TYPE column of the DBA_LOCK and DBA_LOCK_INTERNAL data dictionary views.
A resource uniquely identifies an object that can be locked by different sessions within an instance (local resource) or between instances (global resource). Each session that tries to lock the resource will have an enqueue on the resource.
The Oracle enqueues are:
TO, Temporary Table Object Enqueue

Similar Messages

  • 11g oracle lock question

    I'm trying to understand locking on "other end of FK", i..e. operations on child table in 11g. Database version 11.2.0.2.0
    Table bal_fct has columns(branch id, acct id, cust id, bal dt, bal ccy id, stmt id, bal amt). PK/Unique index on branch id, acct id, cust id, bal dt, bal ccy id, stmt id in that order. All these columns have FKs. No index on these FKs. There is a bitmap index on acct_id.
    An ETL job is doing inserts in bal fct table (child). As I understand, any operation on child table would take RX(mode 3) on parent tables in 11g.
    I queried locks taken. It is taking mode 3 lock on all the dimension tables EXCEPT ACCT(acct_id). Why? I assumed that it will take also mode 3 lock on ACCT also. I have read in other threads that bitmap index really don't count in these discussions.
    Thanks for your help.
    Edited by: rkuppa on May 26, 2013 7:10 AM
    Edited by: rkuppa on May 26, 2013 7:11 AM
    Edited by: rkuppa on May 26, 2013 4:23 PM

    >
    I'm trying to understand locking on "other end of FK", i..e. operations on child table in 11g. Database version 11.2.0.2.0
    >
    Here are two articles about that by Jonathan Lewis
    http://jonathanlewis.wordpress.com/2010/06/21/locks/
    http://jonathanlewis.wordpress.com/2010/02/15/lock-horror/
    >
    Table bal_fct has columns(branch id, acct id, cust id, bal dt, bal ccy id, stmt id, bal amt). PK/Unique index on branch id, acct id, cust id, bal dt, bal ccy id, stmt id in that order. All these columns have FKs. No index on these FKs. There is a bitmap index on acct_id.
    An ETL job is doing inserts in bal fct table (child). As I understand, any operation on child table would take RX(mode 3) on parent tables in 11g.
    I queried locks taken. It is taking mode 3 lock on all the tables EXCEPT ACCT(acct_id). Why? I assumed that it will take also mode 3 lock on ACCT also. I have read in other threads that bitmap index really don't count in these discussions.
    >
    You won't get row level locks when a bitmap index is used.
    Can you edit your post and clarify it a bit.
    You mention 'bal_fct table (child). The table name has 'fct' in it: is this a fact table or a child table?
    And post whether your issue is similar to the one in this other thread from yesterday.
    11g child table update locking
    Some of the info there may help.

  • Too many Oracle Locks

    Hi Guys,
    We are facing this situation where in our Prod environment is getting many many Oracle Locks.
    Users are not able to perform their work smoothly and this hits hard during the month ends.
    DB Version= 10.2.0.4
    Apps Version = 11.5.10.2
    I have performed some investigation and found the below:-
    - The users perform certain operations and it is during this operation that we start getting Oracle locks frequently.
    - This issue cannot be recreated in any lower instance.
    - The sessions that are blocking are INACTIVE sessions with module 'ARXCWMAI'.
    - The sql that is run is also a select query (does not look like a problem area)
    - Trace/tkprof do not have enough information.
    - These sessions also tend to lock the table AR.AR_PAYMENT_SCHEDULES_ALL (found from v$locked_object)
    - These blocking sessions are killed and thats the temporary solution.
    Any ideas or suggestions would be greatly appreciated!
    Thanks,
    Trith

    Trith wrote:
    Pierre, How do I go forward after taking the backups of session,sql and lock tables.
    First goal should be to know what kind of lock type is blocking in your case and what is the related database object.
    To do this you need to understand how Oracle locking works, how different locks are represented in V$LOCK and how to check blocker/blocking session in V$LOCK. First step is to read relevant Concepts Guide section and try the examples and checking at the same time what is exactly in V$LOCK: http://docs.oracle.com/cd/E11882_01/server.112/e25789/consist.htm#i5704. Especiially you need to understand TM and TX lock types and to check what kind of blocking locks you have in your case.
    Other very good documentation about Oracle locking can be found in Tom Kyte Expert Oracle Database Architecture and Jonathan Lewis Oracle Core books. If you have access to My Oracle Support there are also some good notes on Oracle locking.
    Edited by: P. Forstmann on 14 mars 2012 13:52
    Edited by: P. Forstmann on 14 mars 2012 14:04

  • ERP system Hangsdue to oracle Locks

    Hi ;
    I am facing a critical situation for about a week that my ERP system hangs due to oracle locks .
    in st04 i found the log as dead locks detected. in DB01 i can see processes holding the table DYNPLOAD for more than 1000s and it cause the other processes waiting and the entire system hangs.
    The situation is going worse that too many processes are using this and what i am doing is removing the locks from OEM .
    Aix5.3 oracle 10g .Ecc 6 = my system configuration.
    please suggest a suitable solution for this problem
    thanks and regards
    seethy

    Hi Anil;
    I cant login as root . i logon using <sid>adm and did all three commands..
    1. whats the difference between ps -ef|grep oraadm and ps -fu oraadm. i got a list of oracle processes...
    2. shows list of <sid>adm processes...
    3. all space shows fine
    should i do it as root user whats the difference in it? i have to visit the unix department to do so..can you explain its significants..
    DYNPLOAD is the table. can we do anything on database level..i am doing  statistics check daily ..but still locking the table.
    Thanks & Regards
    seethy

  • How to resolve Oracle lock issue

    Hi All,
    What is Oracle lock issue in BW and how to resolve it.
    Regards,
    Ravi

    Hi Ravi,
    The object lock issues that we sometimes encounter in SAP BW production support role.
    Lets take the below example where the InfoObject(0material) load has failed and the load monitor (T-Code: RSMO) looks like this.
    Go through the link below
    http://proradian.com/blog/2008/07/sap-bw-production-support-object-lock-issues/
    Regards,
    Marasa.

  • Need oracle practice question for OCA

    Need oracle practice question for OCA.
    Edited by: 823938 on Dec 27, 2010 10:21 PM

    It's illegal to use dumps.
    Read the following link:
    http://www.certguard.com/braindumps.asp

  • Multiple Oracle Configuration Question

    We have a typical environment setup. I will explain it below:
    Our application works in Online and Offline Mode. For Online mode we connect to Oracle 10g enterprise server and a Local instance of Access and In offline application totally works in Access.
    Now we want to move away from Access and have Oracle PE instead just because we want to use stored procedure and same set of code for offline and online processing.
    So a typical user machine will have a PE instance and a Oracle Client. Currently we use LDAP.ora for Configuring connections. Now i have few questions
    1. How do we ensure that Oracle PE will work when we don't have network connection. Can we have like PE setup with Tnsnames.ORA
    2. What can be the smallest possible package for PE.
    3. Can I use one client to access both PE and Server databases.
    Any help will be highly appreciated.
    Thanks in advance.

    Assuming the "Xcopy installation" refers to using the Windows xcopy command, can you clarify what, exactly, you are installing via xcopy? Are you just using xcopy to copy the ODP.Net bits? Or are you trying to install the Oracle client via that approach?
    If you are concerned about support, you would generally want to install everything via the Oracle Universal Installer (barring those very occasional components that don't use the OUI). Oracle generally only supports software installed via the installer because particularly on Windows, there are a number of registry entries that need to get created.
    You can certainly do a custom install of the personal edition on the end user machines. There are a few required components that I believe have to be installed (that the installer will take care of). I assume your customization will take the form of a response file to the OUI in order to do a silent install?
    Justin

  • Oracle RAC Question

    Question about oracle rac. lets say we have a 3 node RAC database and our tnsnames.ora file is configured to point to node 1. If an application is connected to the database using the database connection information that is on the tnsnames.ora file (pointing to node1), and node 1 is down, how does the application know to point to node 2 or node 3 to connect to the database?

    If you didn't configure node2 and node3 as failover nodes, only the currently connected sessions would failover by the other nodes.
    New connections are no longer possible.
    Sybrand Bakker
    Senior Oracle DBA
    Oracle is not about rocket science. It is about being able and willing to read documentation.

  • Connecting to an oracle database questions

    <p>Our current solution to connecting to our oracle database uses the following code:</p><p>    ReportClientDocument clientDoc = new ReportClientDocument;</p><p>    java.sql.ResultSet rs =  fetchResultSet(driverName, connectStr, userName, password, <u>query</u>);</p><p>    clientDoc.getDatabaseController().setDataSource(rs, <u>tableName</u>,tableName+"_ResultSet"); </p><p>The code for subreports is very similar, but isn&#39;t necessary for my question. The problem w/ this approach is we have to define the SQL query and the table name in the JSP, which we shouldn&#39;t have to do considering both of these are stored in the report. Any changes to the reports&#39; sql would then require someone to edit the jsp, which is just bad.  </p><p>I have been reading up on the ConnectionInfo and ConnectionInfos classes (nice naming convention btw) and the CrystalReportViewer.setDataBaseLogonInfos() method, and I believe a solution may lie here. The problem is the tutorials on using the ConnectionInfo class assume the database name is stored in the report, and we do not want to assume this. We are developing our reports to be used by our customers, who may name their database whatever they want so long as the tables inside it are what we specify. Because of this assumption, I have yet to find a good explanation of how to use the setAttributes(PropertyBag) method which is the only I have seen to specify the database name (within a connection string). I have examples of it, but nothing that defines the key/value pairs required in the PropertyBag to create a connection to an oracle database. </p><p>Is there some documentation on the key/value pairs needed by the PropertyBag? Also, if there is another (easier) solution I am overlooking then please let me know, thanks.</p><p>-Sam Morehouse</p><p>HBF Group, Inc </p><p> </p>

    <p>got it working, here&#39;s some sample code.  </p><p> </p><p><%<br />    try{<br />        ReportClientDocument clientDoc = new ReportClientDocument();<br />        clientDoc.open(reportName, 0);<br />    <br />        ConnectionInfos connInfos = new ConnectionInfos();<br />        IConnectionInfo iConnInfo = new ConnectionInfo();<br /><br />        PropertyBag bag = new PropertyBag();<br />        bag.put("Database Class Name",driverName);    // "oracle.jdbc.driver.OracleDriver"<br />        bag.put("Connection URL",connectStr);        // "jdbc:oracle:thin:@dbName:1521:sid"<br />                            <br />        PropertyBag pb = new PropertyBag();<br />        pb.put(PropertyBagHelper.CONNINFO_CRQE_LOGONPROPERTIES ,bag);<br />        pb.put(PropertyBagHelper.CONNINFO_DATABASE_DLL ,"crdb_jdbc.dll");<br />        iConnInfo.setAttributes(bag);<br />        <br />        iConnInfo.setUserName(userName);<br />        iConnInfo.setPassword(password); <br />                <br />        iConnInfo.setAttributes(pb);<br />            <br />        connInfos.add(iConnInfo);<br />        session.setAttribute(reportName, clientDoc);<br />        session.setAttribute("reportSource", clientDoc.getReportSource());<br /><br />        //Setup viewer. Only going to include the relevant line, the rest can be found</p><p>        //elsewhere.<br /></p><p>        CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();                   oCrystalReportViewer.setDatabaseLogonInfos(connInfos);                                      }    </p><p>catch(ReportSDKExceptionBase exc)%></p>

  • Oracle Multitenant Questions

    Hi,
    I'm studying about Oracle Multitenant and I'm hoping anyone can help me.
    We have a 86 TB database, with no compression and we're struggling to backup this database.
    So, here is what we thought.
    Compress the whole database (since it's only inserted data on the database, no updates at all) on the current version - 11.2.0.3. We're hoping to compress at a ratio of 60%, so, it would be at 36 TB, but still a huge database to backup and recover.
    The next step would be migrate to 12c and setup Oracle Multitenant and divide this database into 5 instances (we can do it, because the database is divided in several mobile technologies). Let's suppose this division is equal, so, it would be around 6 TB each database, so, it would be manageable.
    Questions:
    - Do you think we could benefit using Oracle Multitenant?
    - This would be transparent to the application? No major changes?
    - How the backup would work? Can we backup each plugable database and restore it individually?
    Thanks in advance

    We have a 86 TB database, with no compression and we're struggling to backup this database.
    Ok - so give us information about the DB:
    1. How is it used
    2. Is it partitioned?
    3. How is it being backed up now? Are you doing complete backups or incremental ones?
    We need details - not just a statement that you are 'struggling'.
    Compress the whole database (since it's only inserted data on the database, no updates at all) on the current version - 11.2.0.3. We're hoping to compress at a ratio of 60%, so, it would be at 36 TB, but still a huge database to backup and recover.
    We need details:
    1. How is data being inserted?
    2. One row at a time by multiple users?
    3. Bulk inserts once a day?
    Less data means there is less to backup. But incremental backups don't backup the entire database anyway so we still need to know HOW the DB is being backed up now: how often and what kind of backups.
    You do NOT need to keep backing up old data that has NOT changed. Are you doing that? If so, why?
    The simplest solution to solve a 'database too big to backup' problem is to change the architecture so you don't have to keep backing up data that has NOT changed. Oracle's incremental backups already do that so maybe you are NOT using them.
    The next step would be migrate to 12c and setup Oracle Multitenant and divide this database into 5 instances (we can do it, because the database is divided in several mobile technologies). Let's suppose this division is equal, so, it would be around 6 TB each database, so, it would be manageable.
    I disagree - the NEXT STEP should be to find the cause of your performance issue.
    Based ONLY on what you posted the most likely problem is the types and frequency of the backups you are taking.
    Have you licensed the partitioning option? If so you can just put each of those 'mobile technologies' into its own partition.
    Again - how is data being inserted? If the new data is based on a value (e.g. a date) that distinguishes it from old data you can EASILY just put the newly inserted data into its own new partijtion by using a DAILY partitioned table.
    Then you don't need to backup the old data at all. And each day you would only back up ONE partition for the previous days data.
    That would be be EASIEST and MOST PERFORMANT solution to your problem.
    Questions:
    - Do you think we could benefit using Oracle Multitenant?
    - This would be transparent to the application? No major changes?
    - How the backup would work? Can we backup each plugable database and restore it individually?
    #1 - impossible to say until you provide the DETAILS ask for above about
    1. HOW you are performing the backups now,
    2. HOW often the data changes
    3. HOW the data changes (e.g. new data for today that distiguishes today's data from yesterday's data)
    4. Why you are performing the backups the way you are
    Multitenant isn't going to help if your data loads and architecture are such that you now have FIVE DBs to backup and they all need to be backed-up/restored together
    #2 - No - multitenant is NOT 'transparent'. You will now have FIVE DBs with data in FIVE places. Your current app is written to use ONE DB. The changes could be minor or could be MAJOR.. Querying data across database links is NOT as efficient as querying data that resides on the same server.
    On the other hand if a typical query only queries data from ONE of those five areas then you might get some significant performance improvements.
    But you might get those same improvements simply by properly partitioning the data or using better indexes.
    #3 - yes - you can backup and restore the PDBs individually. They are separate databases. However there is only ONE set of REDO log files. Those redo logs will contain changes from ALL of the PDBs,
    Also there is only ONE SET of memory management to be done. In multitenant memory is managed for the entire multitenant DB.
    There can be a steep learning curve to learn how to do that properly.
    Multitenant is NOT a magic solution for partitioning data - that is what partitioning is for.
    I suggest you find, and fix, you backup/performance/architecture issues with your current DB. If you need help doing that repost your question (and provide the DETAIL needed) in the General DB forum, the SQL and PL./SQL forum or the Backup/Recovery forums as appropriate..
    General Database Discussions
    PL/SQL
    Recovery Manager (RMAN)

  • Oracle 11i questions

    I had a few questions and would appreciate any help
    A.Is there a Document Warehousing feature/module available within the Oracle CRM suite that can link to various documents ( eg word, ppt etc ) for viewing and changing the data?
    B. Is there a link available to data stored in Lotus Notes database and accessible with the CRM application? Also can we relate data in a specific field to Lotus Notes information eg. Employee name to an Org Chart
    C.Is the interest classification with primary and secondary groups that was available in earlier versions still available in 11i to track clients contact preferences, sectors etc?
    D.Capability to integrate with Data from a SQL Server system that would track
    transactions and have a view from the CRM Sales application?
    Thanks you
    null

    A. In CRM Foundation their is a module called MES (Marketing Encyclopedia System) is a storehouse for Marketing collateral. Not all aplications expose this functionality in the UI but it comes with any CRM app anyway. In addition there are various functions for attachmnets scattered through the apps.
    B. No direct link to Notes per se. However, CRM Foundation has various public API's that might be used to load the information into CRM 11i tables.
    C. I think so but not 100% sure.

  • Oracle + Unix question , Error validation for SQL statements in co process

    Hi,
    If I use co process in a shell script , what is the best way to do the error validation of the execution of any sql statements . I was trying to change the following code to make use of co process concept. When I tried echo $? after the execution of a "wrong statements"
    it is still giving Zero output ( meaning success)
    <<<<<<<<<<<<<<<<<<<<<<<<<<<
    cat ${CFG_DIR}/srs_indx.lst | egrep -v '^#' | egrep -v '^[    ]*$' | while read x
    do
    echo " Processing values :: pre $pre tbl $tbl indx $indx tblspc $tblspc cols $cols param $param" >> ${LOGS_DIR}/srs_indx.log
    sqlplus ${BIZSTG} << EOT >> ${LOGS_DIR}/srs_indx.log
    set verify on timing on term on echo on feedback on serveroutput on
    WHENEVER SQLERROR CONTINUE
    drop index $indx;
    WHENEVER SQLERROR EXIT FAILURE
    alter session set query_rewrite_enabled = true;
    create $pre index $indx on $tbl ($cols)
    tablespace $tblspc
    $param;
    exit
    EOT
    RC=$?
    if ( test $RC -ne 0 )
    then
         ERR_MSG="ERROR in creating index $indx for table $tbl from srs_indx.ksh of $ENVIR : $APP by `whoami`@`hostname` on `date` "
         echo $ERR_MSG >> ${LOGS_DIR}/srs_indx.log
         process_warning ${LOGS_DIR}/srs_indx.log
         exitstat=1
    else
         echo "$indx created at `date`" >> ${LOGS_DIR}/srs_indx.log
    fi
    done
    >>>>>>>>>>>>>>>>>>>>
    Any help will be appreciated .
    with thanks and regards
    Ranjeesh K R

    Hi,
    Thanks for the response, I guess people misunderstood my question .
    My question was about "error handling in case of CO PROCESS". For those who don't know about this, in case CO PROCESS you just need to login once to Oracle. In my above code It is logging in & out for each entry in the list. CO process statements may look Similar to SQL statements in pro*C. In PRO*C we use EXEC, but here print -p statements..
    a sample is given for those who are new to co process.
    sqlplus -s /nolog |& # Open a pipe to SQL*Plus
    print -p -- 'connect user/password@instance'
    print -p -- 'set feed off pause off pages 0 head off veri off line 500'
    print -p -- 'set term off time off'
    print -p -- "set sqlprompt ''"
    print -p -- "select sysdate from dual;"
    read -p SYSDATE
    print -p -- "select user from dual;"
    read -p USER
    print -p -- "select global_name from global_name;"
    read -p GLOBAL_NAME
    print -p -- exit
    echo SYSDATE: $SYSDATE
    echo USER: $USER
    echo GLOBAL_NAME: $GLOBAL_NAME
    But I got stuck during error handling of these SQL statements, especially the $? / $* returns 0 even after an erroneus execution.
    Regards

  • Oracle CPU question with 11.5.10 CU2

    Just a general question. First time trying to apply an Oracle CPU and in this case applying the July 2010 CPU to our Test E-biz 11.5.10 CU2 RUP7 install.
    My configuration is RH Linux ES 4.8 with a 10.2.0.4 database server running admin, db and CCM services and then an app server running forms and web services.
    I'm referring to "Oracle E-Business Suite Releases 11i and 12 Critical Patch Update Knowledge Document (July 2010) [ID 986534.1]" and then the subsequent articles that follow that.
    My questions are:
    Q1. My database level is currently 10.2.0.4. It would appear my steps are first update Opatch (no problem there).
    Then apply 9032412.
    Then it looks like I apply either CPU Patch 9655017, or PSU Patch 9654991.
    But PSU 9654991 REQUIRES PRE-REQUISITE 10.2.0.4.4 so I can't apply that right?
    I will apply 9655017 instead and will that get me to 10.2.0.4.5?
    Q2. My configuration is DB Tier with CCM and an app Tier running forms, reports as mentioned.
    Do I have to worry about the Fusion Middle-ware stuff?
    Q3. Patches to apply to E-Business Suite.
    Looks like 9578142 applies to my environment.
    Check the pre-reqs to ensure I have anything that needs to be applied first.
    Then depending on what modules we use or have installed (does it make a difference) I'll apply subsequent patches say for 'Financials'.
    Q3. Anything else I need to consider? We are patching Test first and when done if it's all good we'll schedule Prod.
    I realize this is a pretty generic question. My main uncertainty is on the db 10.2.0.4 patch and if the 965517 will get me to 102045 or not.
    Update - My first patch is giving me the OUI-67620 superset error which I believe is telling me the new patch contains all the fixes from the existing patch so ok to proceed. Right?
    ApplySession adding interim patch '9032412' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9032412 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9032412 are present in Oracle Home.
    The local system has been patched and can be restarted.
    The following warnings have occurred during OPatch execution:
    1) OUI-67620:Interim patch 9032412 is a superset of the patch(es) [  6600051 ] in the Oracle Home
    OPatch Session completed with warnings.
    OPatch completed with warnings.
    Edited by: user6445925 on Sep 23, 2010 3:31 PM

    Hi,
    Q1. My database level is currently 10.2.0.4. It would appear my steps are first update Opatch (no problem there).
    Then apply 9032412.
    Then it looks like I apply either CPU Patch 9655017, or PSU Patch 9654991.
    But PSU 9654991 REQUIRES PRE-REQUISITE 10.2.0.4.4 so I can't apply that right?You can apply this patch -- In the download page, select the patch for 10.2.0.4 database.
    I will apply 9655017 instead and will that get me to 10.2.0.4.5?This is a CPU patch and it will not move you to 10.2.0.4.5 -- Apply either PSU or CPU
    Can E-Business Users Apply Database Patch Set Updates?
    http://blogs.oracle.com/stevenChan/2009/08/can_ebs_users_apply_database_patch_set_updates.html
    Q2. My configuration is DB Tier with CCM and an app Tier running forms, reports as mentioned.
    Do I have to worry about the Fusion Middle-ware stuff?If you do not have Fusion installed, skip the part about its patches.
    Q3. Patches to apply to E-Business Suite.
    Looks like 9578142 applies to my environment.
    Check the pre-reqs to ensure I have anything that needs to be applied first.
    Then depending on what modules we use or have installed (does it make a difference) I'll apply subsequent patches say for 'Financials'.
    Q3. Anything else I need to consider? We are patching Test first and when done if it's all good we'll schedule Prod.Make sure you apply the patches in these docs.
    About Oracle Applications Technology 11i.ATG_PF.H.delta.7 (RUP 7) [ID 783600.1]
    Known Issues On Top of 11i.ATG_PF.H.delta.7 (RUP7) - 6241631 [ID 858801.1]
    I realize this is a pretty generic question. My main uncertainty is on the db 10.2.0.4 patch and if the 965517 will get me to 102045 or not.No (already answered above) -- See these docs.
    Oracle Database Patch Set Update 10.2.0.4.5 Known Issues [ID 1089052.1]
    Changes in the PSU 10.2.0.4.5 release for July 2010 [Video] [ID 1162085.1]
    Critical Patch Update July 2010 Patch Availability Document for Oracle Products [ID 1089044.1]
    Update - My first patch is giving me the OUI-67620 superset error which I believe is telling me the new patch contains all the fixes from the existing patch so ok to proceed. Right?
    ApplySession adding interim patch '9032412' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9032412 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9032412 are present in Oracle Home.
    The local system has been patched and can be restarted.
    The following warnings have occurred during OPatch execution:
    1) OUI-67620:Interim patch 9032412 is a superset of the patch(es) [  6600051 ] in the Oracle Home
    OPatch Session completed with warnings.
    OPatch completed with warnings.See (WARNING MESSAGE "OUI-67078" and "OUI-67620" FROM OPATCH WHEN APPLYING 10.2.X PATCHES [ID 553244.1]). If opatch complete with code = 0 then you can ignore this warning.
    Thanks,
    Hussein

  • Oracle OS Question: SolarisX86 or RH Linux?

    I could pose this question on either RH or Sun site, but I am unsure whether or not I would get an unbiased answer.
    I have a choice of running RH or SolarisX86 with Oracle (Sparc is not debatable - Vendor Relationship issue)
    I am interested in hearing from DBAs who handle/maintain/administer large DB/mission critical/hi-volume transactions and what your comfort level would be with respect to Oracle/Solaris X86 vs Oracle/Linux in the area of
    1. OS patch maintenance/sys admin (drivers, kernels, etc..)
    2. OS compatibilities (hardware drivers)
    3. Oracle performance on each OS
    4. OS specific issues (both pros and cons) (related to Oracle only please)
    5 Commercial Support Programs (Sun or RH) : cost/ responsiveness etc..
    6. and lastly, if you were in this seat, would you bet your job on Solaris86 or RH Linux?
    Thanks in advance.
    PS: Please keep Sparc vs. X86 off this thread.

    You should not only consider using RH,but also Enterprise Linux Ref. http://www.oracle.com/technology/tech/linux/index.html.
    RedHat is a very good Operating system, but I would not consider it to be ready for mission critical systems. Ref. http://www.ecommercetimes.com/story/31586.html, http://weblog.infoworld.com/dickerson/000691.html, http://searchopensource.techtarget.com/originalContent/0,289142,sid39_gci1068311,00.html

  • My apologies in advance for Oracle 7 question

    Let me thank you all in advance for your help. I am running Oracle 7.34 on Unix. I keep finding the temp tablespace 99.86% filled. How can I find out who is filling up the Temp tablespace.
    Thanks

    Are you running with the tablespace as "Temporary" ?
    Are you seeing errors in the alert log re: processes failing because of temp space ?
    If yes and no there may not be a problem. Oracle will allocate and manage based on need. It does NOT return the space (to free), but will reuse it.
    Otherwise, I was never able to get a good answer to the question myself.
    Ken

Maybe you are looking for