How much time will take applyning SP11 level in ECC6.0

Hi,
How much time will take for appying SP11 level in ECC6.0.
Regards,
venkat reddy.

hi,
Make sure , that you increase the shared memory being utilized by database .
In oracle we increase the SHARED POOLSIZE , that will reduce the time in ACT_700 .
There is note which talks about the SHARED_POOL_SIZE , it should be minimum 500 mb , depending upon your total physical RAM and CPU.
Thanks
Prasanna

Similar Messages

  • HT201274 i have choosen erase all content option on my iphone 4s but its only showing a small clock rotating, can u tell me how much time will it take.

    i have choosen erase all content option on my iphone 4s but its only showing a small clock rotating, can u tell me how much time will it take.

    Let it do the rotating thing for about 10-15 min. If it is still doing this, try wiping the phone in iTunes.

  • How much time will i take for the battery to drain, with white screen of death?

    Yesterday I updated the software of my iPod touch (4gen), and today while using facebook I got the white screen of death. I tried to holding the sleep and home buttons but I didn't help. Then I tried to connect to iTunes but iTunes does not recognize my iPod. It seems that the only solution is to let the battery drain. My question is how much time will it take for the battery to drain (I charged it yesterday). Am I damaging my iPod in anyway?( I am worried because the back is a little hot). Should Ii try co cool it by placing  it in front of a fan?

    Yes it will show the low battery picture. Then I just connected it to my PC and restored it.
    For the cold pack I used one of these gel-packs http://www.coldchaintech.com/products/gel-packs.php ( I had them at home).
    I don't think using ice is a good idea here is why:
    1. If you use an ice pack you should be careful to prevent water from entering your iPod.
    2. Your iPod should not get colder than 32° F which is the minimum Operating temperature. And ice is colder than 32° F.

  • HT201274 how much it will take if I erase all content and settings?

    how much it will take if I erase all content and settings?

    Welcome to the Apple Support Communities
    It will take some seconds only to erase the content of the iPhone. Then, you will have to set up your device again

  • I bought a mac book pro and apple promised upgradation to lion aosx but yet nothing rcvd , want to ask how much time it takes for them to send me the code to download it (now its more than a week i purchased this mac)

    i bought a mac book pro and apple promised upgradation to lion aosx but yet nothing rcvd , want to ask how much time it takes for them to send me the code to download it (now its more than a week i purchased this mac)

    http://www.apple.com/macosx/uptodate/

  • How much time it take to rebuild an index for a table with 20 millions rows

    Hi all,
    i need to rebuild the index of a table containing 20 000 000 row (i don't know why the other people working on this didn't think of rebuilding the index regularly, because i asked and apparently it has never been done :cry: :cry:) i am not a sql developper nor a DBA so i can't mesure how long it take to rebuild the index, does any one have an idea (aproximativly of course :aie:), the other question is there any formula to use in order to calculate how often to rebuild the indexes (i can for example retieve how much rows are delated or inserted daily ...)
    Thanks again
    Taha

    taha wrote:
    :aie: that's why i am asking because i don't know (and to be sure which solution is best)
    so the table is like this (the columns) :
    45 varchar2, 5 timestamp, 30 Number no LOB columns, (15 indexes : 5 unique indexes and that those indexes uses at a maximum 4 columns)15 indexes - 100,000 deletes: this could mean 1,500,000 block visits to maintain index leaf blocks as the table rows are deleted. If you're unlucky this could turn into 1,500,000 physical block read requests; if you're lucky, or the system is well engineered this could be virtually no physical I/O. The difference in time could be huge. At any rate it is likely to be 1,500,000 redo entries at 250 - 300 bytes per entry for a total of about 400MB of redo (so how large are your redo logs and how many log switches are you going to cause).
    yes the tables is used by an application so (update, insert ) can take place at any time
    for the deletion , there is the batch which does a mass delete on the table ( 4 or 5 time each day)
    You haven't answered the question - how long does it take to do a sample batch delete.
    If you can enable SQL tracing, or take a before/after snapshot of v$sesstat or v$session_event for the session as it does the delete then you can get some idea of where the time is going - for all you know it might be spending most of its time waiting for a lock to do away.
    >
    "How many leaf blocks are currently allocated to the index(es) ?" how can i answer to this question ? may be if i check the all_objects table ?
    If you keep your statistics up to date then dba_indexes is a good place, cross-checked with dba_segments, and you can use the dbms_space package for more detail. I have a code sample on my blog which allows you to compare the current size of your indexes with the size they would be if rebuilt at some specific percentage: http://jonathanlewis.wordpress.com/index-sizing/ (It's such good code that Oracle Corp. has copied it into MOS note 989186.1)
    Regards
    Jonathan Lewis

  • How much time iphone take to restore 10gb

    while connecting to itunes it shows restore so if i off icloud it wil not show?

    taha wrote:
    :aie: that's why i am asking because i don't know (and to be sure which solution is best)
    so the table is like this (the columns) :
    45 varchar2, 5 timestamp, 30 Number no LOB columns, (15 indexes : 5 unique indexes and that those indexes uses at a maximum 4 columns)15 indexes - 100,000 deletes: this could mean 1,500,000 block visits to maintain index leaf blocks as the table rows are deleted. If you're unlucky this could turn into 1,500,000 physical block read requests; if you're lucky, or the system is well engineered this could be virtually no physical I/O. The difference in time could be huge. At any rate it is likely to be 1,500,000 redo entries at 250 - 300 bytes per entry for a total of about 400MB of redo (so how large are your redo logs and how many log switches are you going to cause).
    yes the tables is used by an application so (update, insert ) can take place at any time
    for the deletion , there is the batch which does a mass delete on the table ( 4 or 5 time each day)
    You haven't answered the question - how long does it take to do a sample batch delete.
    If you can enable SQL tracing, or take a before/after snapshot of v$sesstat or v$session_event for the session as it does the delete then you can get some idea of where the time is going - for all you know it might be spending most of its time waiting for a lock to do away.
    >
    "How many leaf blocks are currently allocated to the index(es) ?" how can i answer to this question ? may be if i check the all_objects table ?
    If you keep your statistics up to date then dba_indexes is a good place, cross-checked with dba_segments, and you can use the dbms_space package for more detail. I have a code sample on my blog which allows you to compare the current size of your indexes with the size they would be if rebuilt at some specific percentage: http://jonathanlewis.wordpress.com/index-sizing/ (It's such good code that Oracle Corp. has copied it into MOS note 989186.1)
    Regards
    Jonathan Lewis

  • How much time it takes for a job status to get updated in to TBTCO table?

    Hi all,
    We have a program that fetches the Job count and job name from a third party tool(UC4) and then searches for the status of the job in the TBTCO table.
    In some rare cases we found that the TBTCO table had not updated with the Job details when the call was made to it.
    Do we have any SAP scheduler settings which determines after a particular time the status gets refreshed in the TBTCO table once the job is triggered?

    hi may be checking Sy-subrc and using wait for X seconds should be a convenient way to code.
    I doubt if there is any schedule to update the table..

  • How much time take unlock

    I have recieved the confirmation from my carrier (sunrise Switzerland) that my iphone will be unlocked in three days.
    Please can you help me and inform how much time will take the unlocking because three days has gone.

    iPhone: Troubleshooting authorised unlock issues
    http://support.apple.com/kb/TS3198

  • How much time does an AP take to failover to secondary controller

    hi All,
    My query is to understand how much time will an AP take to failover to its secondary WLC(Backup) incase primary goes offline.
    Whats the heartbeat time for each AP to verify reachability to WLC.
    also what is the purpose of AP Fail over priority under each AP. i want to ensure AP's fall back to primary WLC once its back online.(Preemption)

    Hi Matehw,
    My query is to understand how much time will an AP take to failover to its secondary WLC(Backup) incase primary goes offline.
    We can not tell exact time but normally It takes 1-3 minutes.
    Whats the heartbeat time for each AP to verify reachability to WLC.
    AP Heartbeat Timeout - AP sends heartbeat to WLC (By default its 30s). Once the primary WLC(or where AP is connected to)goes down, With heartbeats, the AP realizes sooner that the controller has become unreachable.
    also what is the purpose of AP Fail over priority under each AP.
    First of all there are three types: it goes like this Cirtical...high...medium..low.
    ***To configure AP failover priority, we must enable AP Fallback feature globally and then individual APs with a suitable priority level. 
    *** When using both the local  and global backup configurations, the locally configured settings take precedence in the event of a controller failure. If an AP is not able to join any of the locally configured controllers, it then tries to join the global backup controllers.
    More info:
    http://rscciew.wordpress.com/2014/01/22/ap-failover/
    Regards
    Dont forget to rate helpful posts

  • HT4623 I found an update ios6 in my iphone settings and then I tapped on  install ,but it is going on and nothing is displaying .Only apple logo is displaying  frequently.It has been happening  for 13 hours.my question is how much time it will take to upd

    Can anybody help in my concern below
    I found an update ios6 in my iphone settings and then I tapped on  install ,but it is going on and nothing is displaying .Only apple logo is displaying  frequently.It has been happening  for 13 hours.my question is how much time it will take to update ios

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • Want to upgrade RAC 10.2.0.2 database (2 instances) to 10.2.0.5. DB size is 4 TB. Contains mostly .pdf files, reports. I do not have test/upgrade environment. How much time I can expect it will take?

    Want to upgrade RAC 10.2.0.2 database (2 instances) to 10.2.0.5. DB size is 4 TB. Contains mostly .pdf files, reports. I do not have test/upgrade environment. How much time I can expect it will take?
    How much the upgrade process depends of database size, in this case?
    I have fast boxes  IBM AIX 5.3 , 64 b.

    Appreciate your comments ...
    Yes, sound stupid, regarding test environment, but in reality, is not that much:
    -I do have "preprod" environment, (2 instances RAC) same releases of OS, OCW,RAC ... but DB size is 40 GB!!!  It has all the objects as production, but (again but) it does not have physical standby, as production has. This is not that unusual, knowing that production DB grows very fast, and very large, and business do not want to keep preprod, dev, test databases same HUGE size as production is. Savings ...
    -My DB upgrade depends if application  running on top of it is certified for higher RDBMS release ... looks like they have some problems.
    -Very encouraging sounds comment that DB upgrade does not depend that much of the DB size ...
    - i do not recall from where this info came, but I have heard that R 11.* treats PDF files in different way that R10 did it ... and because of that, process of upgrading big databases which have many items of that type (pdf) can take very long. Any idea about this?
    -Brian, thx ... I'm trying hard to provide DB simmilar size in UPG environment and face all possible pitfalls before I go in production...thx for youe advice. I'm relly interested in how upgrade to 11.* from 10.* traets my pdf-s ... All my TBs comming from pdfs. Everi advice will be wellcome ...

  • I published my app and it shows us (waiting for review) and how much time it will take to (Ready for sale) ?

    i published my app and it shows us (waiting for review) and how much time it will take to (Ready for sale) ?

    5-10 days or longer.

  • My iphone5's camera is not working.The shutter freezes each time.How much time it normally takes to fix it.(i have an appointment this week). and if they can't will they give me a new iphone5 ?

    My iphone5's camera is not working.The shutter freezes each time.How much time it normally takes to fix it.(i have an appointment this week). and if they can't will they give me a new iphone5 ?

    Yes part of Apple Store
    You will get a service replacement ,maybe new maybe refurbed to new standard
    but in a "brown box" so no bits and pieces just unit for unit exchange
    They will know of iPhone history from their systems but always
    worth having proof of ownership but not essential (as far as I know )

  • While running the query how much time it will taken, I want to see the time

    Hi Folks
    I would like to know ... While running the query how much time it will be taken, I want to see the time? in WEBI XI R2.....
    Plz let me know  the answer.......

    Hi Ravi,
    The time a report runs is estimated based on the last time it was run. So you need to run the report once before you can see how long it will take. Also it depends on several factors... the database server could cache some queries so running it a second time immediately after the first time could be quicker. And there is the chance of changing filters to bring back different sets of data.
    You could also schedule a report and then check the scheduled instance's status properties and view how long a report actually ran.
    Good luck

Maybe you are looking for

  • Miro payment terms on the based on the vendor master payment terms

    i need to caluculate the MIRO payment terms based on the vendor master payment terns lfb1-zterm what are the configuration settings needed. would  u please tell me the solution with regards, Srinivas

  • How many messsages can we insert using JDBC receiver adapter in to DB

    Hi Friends, We are having 30 JDBC receiver interfaces in my current implementation project; load of JDBC receiver interfaces was 50 k messages per day and Performing only INSERT operation on data base. We have created individual communication channel

  • Different name in English and Dutch/German for a tab?

    Hello, I have a tab group, in which i have a view to which 2 events are assigned. They have the same switch group assigned, say, YY_ABC. The view switch group is defined in the "View Switch group section as well. In English, the portal displays corre

  • Question about Java GSS-Kerberos authentication

    Hi, I am new to GSS API. I have a client requirement to use Java GSS Kerberos Authentication instead of using IIS for Integrated Windows Authentication. In IWA, the IE browser automatically picks up the logged-in windows user credentials and passes i

  • Print a form's content that is designed by swings component?

    ive 2 questions to ask which ive asked one of them tow days before but i havent got a usefull solution for it!!! 1) im trying to print a simple document by these codes:     try             FileInputStream textStream;             textStream = new File