Need inputs on the pros and cons of setting unlimited extents

Hi,
We are planning to set unlimited extents on all the DB tables inorder to avoid the frequent alerts and errors we get for TOO MANY EXTENTS. Now we are manually doing the changes in SE14.
But we hava a proposal of setting unlimited extents for all tables which we think will solve the issue.
Kindly provide our valuable feedback on this. Is it advisable or not?
SAP Version  : 4.6C
Oracle : 10.2
OS - AIX UNIX
Thanks
Anupama

Hmm.. when I enter "TOO_MANY_EXTENTS" into the search box in the upper right corner of this forum I get back this:
SAP Note 435290 Description of BRCONNECT 6.10 DB check conditions
And in there I find:
"16. TOO_MANY_EXTENTS (formerly MANY_EXTENTS)
This condition checks whether there are tables or indices for which the number of allocated extents exceeds the specified threshold value. As a default, all tables and indexes are checked against the same threshold value. However, you can define different threshold values for individual segments or tablespaces by specifying their names in the OBJECT field of the DBCHECKORA table (transaction DB17).
Possible checking operands, threshold values, value units:
16a.     >, >=         <number>        P
More than <number> % of the maximum number of extents was already allocated.
16b.     >, >=         <number>        <none>
More than <number> extents were already allocated
16c.     <, <=        <number>        P
Fewer than <number> % of the maximum number of extents can still be allocated.
16b.     <, <=         <number>        <none>
Fewer than <number> extents can still be allocated.
Note: The check condition TOO_MANY_EXTENTS has only an informative role for locally managed tablespaces (LMTS), where the max extents attribute is set to UNLIMITED and the next extents size is determined automatically by Oracle. As a result, the number of extents is no longer a critical factor for LMTS."
Given that you've performed a proper notes search yourself before posting this question I really wonder, why you did not find this information...
So, to finally answer your question: just put the MAXEXTENTS value to UNLIMITED or reorganize the tables/indexes into a locally managed tablespace.
And please start reading the DBA documenation for SAP on Oracle!
regards,
Lars

Similar Messages

  • Help needed - what are the Pros and Cons?

    Hi Swing masters! :)
    I was told that I should post this Q here and that Camickr and a few other might have some more specific answers.
    I'm new to Java and programming and trying to establish some good habits from the beginning. Therefore I'm very interested in knowing the Pros and Cons for each end every of the following approaches.
    What is good, what is bad, should some of them be avoided etc?
    I hope someone with Swing experience can answer these questions. Thanks. :)
    Kind regards,
    Stefan
    class ExperimentGUI
        void ExperimentGUI() // Example A
            JFrame content = new JFrame();
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            content.add(textView, BorderLayout.CENTER);
            content.pack();
            content.setLocationRelativeTo(null);
            content.setVisible(true);
    class ExperimentGUI extends JFrame
        void ExperimentGUI() // Example B
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class ExperimentGUI
        ExperimentGUI() // Example C
            JFrame content = new JFrame();
            JPanel pane = new JPanel(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            pane.add(textView, BorderLayout.CENTER);
            content.setContentPane(pane);
            content.pack();
            content.setLocationRelativeTo(null);
            content.setVisible(true);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example D
            JPanel content = new JPanel(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            content.add(textView, BorderLayout.CENTER);
            setContentPane(content);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example E
            MyPanel pane = new MyPanel();
            setContentPane(pane);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class MyPanel extends JPanel
         public MyPanel() {
            setLayout(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example F
            MyPanel pane = new MyPanel();
            add(pane);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class MyPanel extends JPanel
         public MyPanel() {
            setLayout(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
    }

    Well, in most of the examples I've seen on the net people use "...extends JFrame"Well, I'm probably one of the bigest offenders (in this forum at least)
    google "composition vs inheritance", you'll most likely find some good reads Not know the difference between the two (I'm a problem solver, not a designer), I figured I should take up the challenge.
    So one of the first links I read said:
    Object composition and inheritance are two techniques for reusing functionality in object-oriented systems
    So I'm thinking how do you reuse a JFrame? Maybe if you build the frame with a menu bar or toolbar you could reuse some of the components but you don't reuse the entire frame. So it seems to me that the reuse aspect of inheritance or composition doesn't apply.
    Next link I read said:
    Make sure inheritance models the is-a relationship
    Now this makes sense to me. Lets say I'm creating a MineSweeper Game. Lets create a class with the following signature:
    public class MineSweeper extends JFrameThis obviously does not follow the is-a relationship rule. MineSweeper is-a Game, not a JFrame.
    So, I guess I'll have to update all my examples to use composition, so I don't mislead others on the forum.

  • What are the pros and cons using Active Data Guard vs Data Guard?

    My understanding is that Active Data Guard is an additional database option for Oracle 11gR2 Enterprise Edition. I need to know the pros and cons using Active Data Guard vs Data Guard in order to decide whether to get pay extra for the Active Data Guard.
    Thanks for any help.

    Hemant K Chitale wrote:
    Before jumping in to Active Data Guard, one needs to evaluate :
    a. Is there really a need to run queries on the Standby ? The Standby could / should be at a remote site so queries are "across the network". Depending on the nature of the queries and the volume of output, the "performance" of the queries may not seem to be the same.
    b. If the database is not in Maximum Protection mode, the data "seen" at the standby may not be in "real-time" synch
    c. Not all applications are truely read-only when querying. Some applications use "jobs" that write to tables when querying. Such would not work with Active DataGuard. (example : EBusiness Suite). There are very complicated ways of handling this -- and one needs to consider if the complications can be introduced and supported.
    Over the network accessing standby read only is really not an good idea, I think no one will compare performance with primary and standby,
    But some of them they want to validate data which are very critical, as it is matching with primary or not, Its an added advantage with ACTIVE DATAGUARD
    Prior to that until unless stop MRP, open database and then we need to validate, So there is an interruption of recovery, I can say its also an advantage where there is no interruption of recovery.

  • HT204053 What are the pros and cons of 1) choosing to use the SAME Apple ID for iCloud services on one side, and purchases on the iTunes Store, App Store, and iBookstore, on the other side; or 2) to have and use two separate Apple Ids for these "two sides

    All is in the title, so I repeat it below with a better identation.
    What are the pros and cons of
    1) choosing to use the SAME
                                                  Apple ID for iCloud services on one side, and
                                                  purchases on the iTunes Store, App Store, and iBookstore, on the other side; or
    2) to have and use two separate Apple Ids for these "two sides"?
    P.S.
    I have loads and loads of free podcasts in iTunes in my iMac, that are certainly more thant the 5 gigas the iCloud provides for free, so I don't want those to go to the cloud. But this is perhaps a different question...
    Also need to mention that I have itunes on a mac, a pc and an iphone.
    Sorry to look so silly with this question, but I don't get the "big picture".

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • What are the Pros and Cons while joining tables at DF and Universe level

    Hi Experts,
    I am new to Data federator designer. I need help on the below.
    Could you please let me know the Pros and Cons while joining the source tables in data federator
    And While joining the DF target tables in universe designer.
    Regards,
    Gana

    Hi,
    1. I have created target tables based on source tables with one to one mapping and then join all target tables in universe.
    Ex: Source tables: Infocube text tables, fact tables and 3rd party data base table
    Target tables:Target tables are same as source tables
    --- Yes this is the way to create target Tables  and join them in the universe.These target Tables gives you the flexibility  like in future your requirement is to add one more object based on some calculation which is not possible in the universe so that time you can create  one more column in the target table and do the calculation. at the same time if you are using source table you can not do anything.
    2. Created single target table with all objects of source tables and merged all sources tables data.
    Ex: Source tables: Infocube text tables, fact tables and 3rd party data base table
    Target table: Single table.
    --- This is bit complex structure to merge all tables data in the one target table.in this situation you have to put more efforts and it is more complex.basically this type of target table is useful when you are merging data by multiple source into single  or  creating one target table based on the  union of tables by adding two mapping rules or more and you can not join tables in universe.
    Better approach is first 1. create target tables based on the source tables and join them in the universe.
    Thanks,
    Amit

  • What are the Pros and Cons of Using Batch Numbers over Serialization

    Dear SAP Gurus:
    Will someone please give me the benefits of using Batch Management over serial numbers in this case scenerio, or vice versa:
    Client wants to trace all the components of an assembly in a BOM.  Even the Raw material.  The client sends the material out today and has the vendor assign serial numbers to the individual pieces, the client gives the range of serial numbers to use.  We are looking at using batch numbers to accomplish this and issue one material and batch number to a production order.  Then use MB56 batch where used functionality to view history.  I am wanting to understand the benefits of this.  Please advise and points will be awarded as always. 
    Also, in this scenerio, can you issue multiple material/batch numbers to one vendor op that has its own production order?

    Yes it is a subcontract. 
    Example:  This is the solution but need the pros and cons of doing this scenerio
    Sheet of metal sent to vendor to make lets say 1800 peices of material number nas5703-01.  All 1800 pieces come back and issued to a production work order using one bacth number for one material item so that batch number can be traced in history in MB56 and a fit up report.

  • What are the pros and cons re using an intel iMac vs MacPro with LP8?

    I'm considering getting a new intel Mac in the near future (presuming a new MacPro will be released in the near future - maybe at the same time as Leopard). I compose largely for film and television and I am composing largely using a combination of loops, software instruments and some recorded live performance. I usually sync to a low res quicktime movie.
    I do like the idea of a simple and uncluttered work environment with an iMac, added to which there's also a degree of portability with the iMac however the MacPro is obviously more powerful. I'm not sure how much the difference in power between the two computers would affect me.
    Would I be compromising myself much if I went for the iMac over the MacPro? What are the pros and cons of the iMac vs the MacPro in relation to Logic Pro 8?

    In the world large-scale music composition using samples, loops, etc (especially for film) your two biggest needs are RAM and HD speed/access. The imac looses big time in this department (as a single computer at least) as it can only be upgraded to 4gb ram, and only holds one internal HD, and also lacks any PCI expansion for DSP cards, audio interfaces, etc.
    In generalyou want to separate your data vs applications as much as possible, to ensure both can be accessed quickly and easily by the computer. So its best to have your system software / applications on one internal HD, and your logic data (samples, audio recordings, loops) on another drive(s). You can do this with an iMac via USB, FW800, & FW400, but depending on how big your projects get, how many USB and FW drives / interfaces you use, and how much data you need to stream, you could overload the buss on the imac (not sure if it has multiple busses or not). Plus speed wise, internal SATA are much faster than external drives, and the mac pro with its 4 internal slots seems like a great choice for speed and flexibility.
    However, if you dont find yourself doing large scale projects, then you might be better off going with an imac. We just purchased one for my father and it runs great! It blows the socks off of my Dual 2.5 G5 tower in terms of CPU speed! If you run into problems running things from the imac, you could always add a mac-mini down the road to stream sample libs, as a Logic node, etc, which seems to be a much more cost effective solution.
    I hope this was helpful, but I probably just made the decision harder . In fact, if I were to start over today, I dont know if I'd go with a MacPro, or an iMac / mac mini combination. they both seem to have their advantages / disadvantages.
    Best of luck!

  • Too worried to upgrade software. The pros and cons

    From a NOkia lover to others, 
    I am all for making improvements and fully understand that we can't always get it right first time every time but atm I am too concerned with the fact that updating my software will create problems that are non-existent in my eyes.
    My girlfriend updated her (my old) N70 software last week and now her phone is in the repair shop. This could just be a coincidence but....
    I had an N95 (on orange) and was stung when the "unlucky for some" version 13 was installed on the handset. See the epic thread here "N95 firmware upgrade affects battery life" (couldn't post link) 
    I carried out the full back up to my card as instructed but the games I purchased would no longer work so had to re-buy them. The battery life was killed in eight hours due to the wlan making a connection attempt as long as the battery would allow it to happen. The point is... all of this was not happening before the update. 
    It was that bad that in the end I was forced to upgrade / get a new contract before I was entitled to one from Orange and had to fork out for two contracts to get the handset spec I needed.
    I now have an N95 8GB and have no qualms with it what so ever. It has version 20 atm and pc suite informs me there is an update every time I boot the program up. So far.. I have declined to update.
    So what are the pros and cons and is it more of a risk to chance losing the licenses I have paid for and update if nothing is wrong?
    Best Regards
    SgtTrojan 
    The swordsman that goes to war thinking of saving himself had better not go to war at all.

    I myself am also worried. A friend of mine told me if there is no porblem with your current version of firmware for your phone then why update? It is not a assurance that after updating there would be no problems/bugs with the new version.My friend has a point. Why would we update if there is no problem with your current firmware version? Some would say it would be faster, there would be more improvements to the music ( which I know would be depending with your hardware and not the software).
    I am thinking of updating my firmware with a Nokia Service Center here in my country (Philippines). It is for free at the moment because my phone ins under 1 year Warranty. But I am thinking twice after what my friend told me.
    I hope my opinion helps you all out here.

  • What are the pros and cons of installing java+abap stack for portal?

    Hi all,
      1.What are the pros and cons of installing java+abap stack for portal?
      2.what effect it does on the ume options to be choosen??
      3.for the purpose of integration of r3,bw and crm on portal and crm 4.0 60.2.3 business package which option of stack(java or abap or both)will be good option and which ume option while installation should be choosen?
    regards
    Rajendra

    Hi Rajendra,
    The NetWeaver Installation Master Guide offers some good scenarios on the pros and cons:
    https://websmp201.sapag.de/~sapidb/011000358700005412792005E.pdf
    In a nutshell:
    ABAP+JAVA
    Pros
    - Decrease # of servers required to administer the portal
    - Less costly
    Cons
    - Upgrades could be dependent on ABAP and Java release level
    - Additional load on the server due to ABAP stack
    - Limited scalability
    JAVA and ABAP on separate server
    Pros
    - Improved performance
    - Allows each system to be single-use purpose therefore downtime does not affect other components
    - More scalable
    Cons
    - Adds complexity to landscape
    - Additional costs
    Regards,
    Thomas Pham

  • What are the pros and cons of using people keywords, given that my catalogue is already uptodate with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

  • Where is the best place to get/read information of the pros and cons on updating my OS from Snow Leopard to the current OS?

    Where is the best place to get/read information on the pros and cons of updating my OS from Snow Leopard to the current OS?
    I have an iMac 27" intel, purchased Nov 2009.  I am currently using 10.6.8

    Apple OS 10.9 Mavericks:
    Quick overview:
    https://help.apple.com/osx-mavericks/whats-new-from-mountain-lion
    OS X Mavericks supports the following Macs that are already running a minimum of Snow Leopard:
    iMac (Mid-2007 or later)
    MacBook (13-inch Aluminum, Late 2008), (13-inch, Early 2009 or later)
    MacBook Pro (13-inch, Mid-2009 or later), (15-inch, Mid/Late 2007 or later), (17-inch, Late 2007 or later)
    MacBook Air (Late 2008 or later)
    Mac Mini (Early 2009 or later)
    Mac Pro (Early 2008 or later)
    Xserve (Early 2009)
    Transitioning your Mac from Mountain Lion to Apple's new OS X 10.9 Mavericks
    http://appleinsider.com/articles/13/10/23/transitioning-your-mac-from-mountain-l ion-to-apples-new-os-x-109-mavericks

  • What are the pros and cons of a solid state drive for imac?

    What are the pros and cons of a solid state drive for imac?
    I wonder if the SSD is good for replacing a failing hard drive?

    However they are dramatically faster than magnetic disk drives, useful for startup and shutdown and frequently accessed apps and fi.e

  • Should i jailbreak my iPad Air? What is the pros and cons of jailbreaking?

    Should i jailbreak my iPad Air? What is the pros and cons of jailbreaking?

    If you jailbreak your iPad:
    1. Your Apple warranty, if any is remaining, is canceled.
    2. We can't help you in these forums.
    3. Apple Support and the Genius Bar won't help you.
    4. You can get a virus and malware.
    5. You may "brick your iPad and have an $$$ paperweight.
    What is Jailbreaking iOS? Should I do it?
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/what-is-j ailbreaking
     Cheers, Tom

  • It is possible to capture 1920x1080 instead of 1440x1080 from a HDV camera in fcp ? If do, plz also says the pros and cons.

    It is possible to capture 1920x1080 instead of 1440x1080 from a HDV camera in fcp ? If do, plz also says the pros and cons.

    And it's easy enough to change to square pixels within the editing application.
    Russ

  • Pros and cons in setting AD domain trust into my AD domain for more than 10+ AD domain and some with same FQDN or label ?

    Hi,
    Can someone please share what is the pros and Cons of trusting AD domain for more than 10 different AD sites into my existing single domain forest let say ParentCompany.com ?
    At the moment I only have one single forest AD domain with the Domain and Forest functionality Windows Server 2003. The main domain controller FSMO role holder is in the Data Center spread across three different VMs running on Windows Server 2008 R2.
    The main/parent company has acquired smaller business chain of 15+ offices in which they have their own Domain Controller and also their own domain, sometimes they also got the same AD domain between them (no trust or whatsoever in those 15+ AD domain).
    Sounds crazy but yes, there is no standardization in them or whoever manage their IT infrastructure previously.
    I'm now considering what are the benefits of creating the AD domain and trust versus importing those AD objects into my domain and then decommission them.
    No need to worry about Exchange Server since all of the user in those sites connecting to the RDS to my ParentCompany.com terminal servers.
    My requirements or goal are as follows:
    1. Simplify the AD domain structure & maintenance
    2. Try to avoid the disruptions of the user in terms of downtime and selecting multiple different domain everytime they login to their PC or SharePoint sites.
    any kind of help and suggestion would be greatly appreciated.
    Thanks.
    /* Server Support Specialist */

    Can someone please share what is the pros and Cons of trusting AD domain for more than 10 different
    AD sites into my existing single domain forest let say ParentCompany.com ?
    I think you mean 10 AD domains.
    Managing multiple domains can be difficult for administration. I usually recommend using a single domain in a single forest with OUs to separate resources whenever it is possible.
    However, if you can't do that then you can simply create trust relationships between your domains. The advantage is that you can enable access to resources to different domains. I do not see cons here.
    The main/parent company has acquired smaller business chain of 15+ offices in which they have
    their own Domain Controller and also their own domain, sometimes they also got the same AD domain between them (no trust or whatsoever in those 15+ AD domain). Sounds crazy but yes, there is no standardization in them or whoever manage their IT infrastructure
    previously.
    I'm now considering what are the benefits of creating the AD domain and trust versus importing those
    AD objects into my domain and then decommission them.
    I would recommend consolidating your domains into a single one. ADMT is a migration tool that you can use. The advantage would be the ease of administration. Also, by having multiple DCs for the same domain across sites, you will take benefit of High Availability
    of your and DRP.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

Maybe you are looking for

  • How to handle table type record in OAF

    Hi , Req: There is a search page that can be accessed from different locations . The result set should be different when accessed from each location . Approach to be used : Call a PL/SQL api which returns a table type input parameter for different se

  • Not able to use macro with LDB PNPCE

    Hi, I am trying to use macro 'rp-provide-from-last' as below with LDB PNPCE.But syntax error 'unable to  interpret SPACE' has occurred. rp-provide-from-last p0001 space pn-begda pn-endda. Please let me know how to use this macro with LDB PNPCE.

  • MMR Req. /Option field

    Hi All, I want to see in Material Master record, which fields are required/optional/Display. What is the path or T.Code for this ? Regards Asim.

  • How can I transfer my photos and videos from Palm Treo 750 to iMac OS X 10.9.5?

    My old Palm Treo 750 which does not have any service has very special photos and videos I would like to put on my iMac OS X 10.9.5. I plugged the phone into the USB adapter and the phone is not recognized. Can anyone give me direction?

  • Employee List

    Hi,          I have a requirment where the user will select an Employye personel number on Webdynpro screen and get his position , if its a Manager Postion ? i need to list the all the employess under the same org unit to be selected in order to repl