Oracle Service taking memory more than 50MB. Why?

We are using Oracle 8i and having One Database and 5 tablespaces. Will these effect the memory occupied by Service?

Well, the problem is: as for me it's 14 uselessly consumed MiB.. the instance is not even in nomount status, so I would guess it'd take 14MiB plus 80MiB for the S.G.A. but I did not checked. I won't play too much with the monitorring computer ;)
The sole principle of needing a service for the Instance to run on Win* is weird, but I think mandatory because of the O.S.'s stange design.
There is no Java Pool, nor is Java installed in my OID database. I just don't need it to have the OID functionning. In fact, the only database in which it is installed is my HTMLDB database. 80MiB is the most reasonable S.G.A. size I've found for running this OID. Using this memory size I don't have to bother with the OID perf. It's running smooooooothly :-)
Yoann.

Similar Messages

  • Why can't I download more than 50mb in iPhone ??

    Why can't I download more than 50mb in iPhone ??

    Deggie is correct. The carriers originally wanted it so people wouldnt be downloading large files on their networks and causing congestion. Also look at is from a carrier perspective for protecting costumers. People could also complain if they went over their data plan that they should have received a warning about downloading large files. Rather than argue about updating/downloading apps, they have the warning now.
    I am hoping down the road that carriers converse with Apple to lift those, we will see what happens. Rodgers has more influence on lifting that limit that normal costumers would.

  • TS1702 why can't i update the app more than 50mb from itune but can throught wifi?

    I tried to update Apps more than 50mb through itune, but found the Apps which are needed to be update are mark "Downloaded" in iTune store.  Of course if the Apps mark "Downloaded" are not able to do anything with it.  On the other hand, I can simply use wifi to update the Apps, more than 50mb, throught my iphone instead of iTune.  Is there any problem with iTune or something wrong with my phone?

    In the App section of your itunes library ( NOT the sync pages) there is a button at the bottom which says Check for updates

  • Windows 8 OS taking up more than 100 GB on my new yoga 11s

    I don't know how to solve this.  I feel like I need an advanced degree in computer science to deal with all this windows 8 frustration.  I have a new 11s yoga--well not new enough or it would be going back to Best Buy.  I barely have anything downloaded on it, but the windows 8OS is taking up more than 100 GB on my system.  It has barely any memory left, I is showing in RED and warning me sometimes to close other apps.  I noticed that windows 64 bit only requires 20gb to download--why in the world is mine taking dangerously high levels of my GB?  Please help. 

    Windows 8 should not use anywhere near that much memory.  I have a Yoga 13 which should be fairly similar, and there is only 31GB used on the harddisk, and this additionally includes half a dozen games, Microsoft Office, and a few more apps.
    Have a look at how much memory all the installed Apps are using, you can do this from the Metro interface by sweeping in from the right hand side of the screen, selecting Settings, then choose "Change PC settings", choose "Search and apps", then choose "App sizes", this will allow you to identify if there is one application that has used up all the disk space.
    You can also find the size of all the applications installed from the Control Panel (access by typing "control panel" in search box after sweeping in from the right in Metro), select Programs, then "Programs and features", then click on the column header "Size" to see if there are any installed applications taking up all the hard disk.
    Another option is to go to the Desktop, open the File Explorer, then click in the search box to the upper right.  This will open the Search toolbar, within which is a drop down entitled "Size", click on this and select "Gigantic>128MB".  This will display any large files, for example on my Yoga there is a single file "MEMORY.DMP" that is 543MB.  Have a look and see if there are any really large files that are using up your hard disk space.
    Another couple of thoughts, do have any external personal audio/video devices that are synced with the computer? For example if you have an MP3 player with 64GB of memory that is full of music that you have synced with the computer then that would fill the remaining hard disk space.
    I understand it can seem a little daunting trying to work out what is going on, personally I think it is worth perservering as the Yoga is a really nice laptop.  You of course have to realise that it is a very advanced piece of technology and software, but in being that advanced by definition it does mean that it is not as simple to operate as a lot of consumer gadgets.
    Good luck in working out what is using up all the hard disk space.

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • How to select a substring in oracle up to a more than one specific character

    How to select a substring in oracle up to a more than one specific character
    for ex : 121.051^NP: FAMILY PRACTICE  ( trim the values before ^ )
                121.051^*NP: FAMILY PRACTICE (trim the value before *).
    with below function I can only get rid of ^ , I want both the specific characters ^ and ^* to be removed at the same time.   
    SUBSTR(p.phys_sub_grp_2_desc,INSTR(p.phys_sub_grp_2_desc, '^') +1)

    Another option is to boldly replace 'em:
    SQL> with t as (
      2  select '121.051^NP: FAMILY PRACTICE' str from dual union
      3  select '121.051^*NP: FAMILY PRACTICE' from dual
      4  )
      5  --
      6  -- actuel query:
      7  --
      8  select substr( replace(str, '*')
      9               , instr(replace(str, '*'), '^')+1
    10               ) str
    11  from   t;
    STR
    NP: FAMILY PRACTICE
    NP: FAMILY PRACTICE
    2 rows selected.

  • I have very little space left on the hard drive on my macbook, on my storage report it says "other" is taking up more than two thirds of the space on the hardrive. How can I identify what these files are?

    I have very little space left on the hard drive on my macbook, on my storage report it says "other" is taking up more than two thirds of the space on the hardrive. How can I identify what these files are?

    Hello,
    There is free software you can download that gives you a graphical image of what files are used on your hard drive. http://www.derlien.com/
    This may help you clean down your hard drive for more space.
    Best of luck

  • Tried to set up shared memory more than once?

    Hi all,
    Im getting a pop up error on 10.7.3.. It pops up very fast and is almost impossible to read.
    Having checked the console, this is the error..
    01/04/2012 13:59:12.457 com.apple.launchd.peruser.501: (com.facebook.videochat.'MyName'.updater[486]) Tried to setup shared memory more than once
    (Ive edited out my name from the string..)
    Can anyone tell me how to fix this?
    Thanks!

    I think this is a bug in some facebook-related software you have installed.
    Maybe update facebook stuff.

  • Service interface with more than one operation

    Hi all,
    is it possible to have a service interface with more than one operation?
    I have found this blog:
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414900)ID0209118050DB10459657028039341762End?blog=/pub/wlg/15123
    But this sentence:
    ABAP proxy (inbound/ outbound) cannot be developed out of a Service Interface having Operations with different type of messages included. If an ABAP proxy is to be developed then all the messages included should be of one type i.e. either the included messages should be Message Type, External Message, IDOC or RFC Message. This behavior can be observed when a Service Interface is created and then subjected for a check
    regards

    Hi,
    now the interface is running but I get another error in .NET.
    "The header 'Diagnostic' from the namespace 'http://sap.com/xi/XI/Message/30' was not understood by the recipient of this message, causing the message to not be processed.  This error typically indicates that the sender of this message has enabled a communication protocol that the receiver cannot process.  Please ensure that the configuration of the client's binding is consistent with the service's binding. "
    Any ideas?
    regards

  • I red that Oracle Data Integrator provides more than 100 KMs out-of-the-box

    I red that
    Oracle Data Integrator provides more than 100 KMs out-of-the-box.
    Is anybody have any idea how I can reach or view it or use it ?

    I got it its under <Oraclehome>oracledi>impexp

  • How do I find what "other" is in my storage on my mac? "Other" is taking up more than half of my storage on my half a year old MacBook Pro?

    I recently got a brand new MacBook Pro for my birthday (about 4 months ago). Pop ups have been showing up saying that my disk is almost full. I checked to see what was taking up the storage and it just said "other." This "other" stuff is taking up more than half of the space on my Mac. Does someone know how to fix this?

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside a photo or iTunes library will corrupt the library. Changes to such a library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper 2>&-
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective 2>&-
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • Oracle OUTER JOIN on more than one table

    Hi!
    Friends, please help with this urgent problem: How can an outer join be written on more than one table?
    An SQL Server query:
    SELECT * from a INNER JOIN b on a.id = b.id LEFT OUTER JOIN c ON c.id = a.id AND c.id = b.id
    works fine with SQL SERVER
    But Oracle query:
    SELECT * from a,b,c WHERE a.id = b.id AND a.id = c.id (+) AND b.id = c.id (+)
    gives an error: OUTER JOIN cannot be used on more than one table? Why?
    I use OracleDriver from classes12.zip to connect to Oracle8i database.
    Please, help!

    The Oracle 8i and later SQL reference reads that the following "join_types" are supported and under this syntax it does not limit the LEFT OUTER JOIN (syntax the same as SQLServer example in original note) to two tables as implied in these notes:
    The join_type indicates the kind of join being performed:
    Specify INNER to indicate explicitly that an inner join is being performed. This is the default.
    Specify RIGHT to indicate a right outer join.
    Specify LEFT to indicate a left outer join.
    Specify FULL to indicate a full or two-sided outer join. In addition to the inner join, rows from both tables that have not been returned in the result of the inner join will be preserved and extended with nulls.
    You can specify the optional OUTER keyword following RIGHT, LEFT, or FULL to explicitly clarify that an outer join is being performed.

  • Gross price of Service entry Sheet more than the value ordered in PO

    Hi all!!
    I have a PO that were created and changed by the following way:
    The user created the PO of service with the quantity = 1 and the price = 50.000,00
    Than he made the service entry sheet of this PO and MIRO normally.
    As the fields on service tab wasn't blocked, the user changed the quantity to 105.000,00 and the price to 1.
    After that, he made 3 services entry sheet to complete 105.000,00 quantities.
    With this, the value delivered became bigger than the value ordered in the PO.
    if I make a service entry sheet with a quantity of 200.000,00 for example, the message SE363 will be shown to me with a message that the "quantity entered exceeds quantity in purchase order".
    I'd like to know if there's a way by customizing of control the price on Service entry sheet based on the value ordered in PO instead of quantity.
    Can anybody help me?
    Thanks in advance,
    Cris

    Hi Ajit and Rajesh
    Thanks for the response.
    The user made a PO with one line with quantity 1 and net price 50.000,00.
    In the services tab, he put a sevice with quantitiy 1 and gross price 50.000,00, and than made the service sheet entry, and MIRO.
    After this he changed in the services tab the quantity to 105.000,00 and the gross price to 1 (with the objective of making more than one service entry sheet by quantity).
    With this, the system let the user make many entries of service allowing the user to make entries os sheet more than the net price that is in the line of PO.
    I'd like to know if there's a way configure the system to make a compare between the gross price and the net price when i'm doing the service entry sheet, because now when I change a line of service tab, the system is not considering that other service entry sheet were made.
    So that, i'm having the value of ordered bigger than the value delivered.
    Nowadays, the block is made by quantity as I said, but i'd like to block by price too.
    Sorry about the bad explanation before, I hope that now i explained better.
    Thanks
    Cris

  • Service PO for more than one activity number

    Hi Experts,
        I'm working on service process, my client requirement is to create a Service PO, SES and Invoice using BAPI's.
        While creating Service PO using BAPI_PO_CREATE1 with
        Item cat 'D' and Acc *** Cat 'P' and more than 1 activity number at the services level,
        service PO is getting created only for the 1st activity and not for the rest of the items.
    Can you please help me in solving this issue.
    Thanks & Regards
    PravithaNambiar

    Hi,
    The profile you would need would look something like this:
    Object Type: P
    Object ID: <blank>
    Maint flag: not checked (for display access)
    Eval Path: <blank>
    Status Vector: <blank> (though the system will probably set it to 12 anyway)
    Function Module: <The name of your function module that returns the second pern of the current user as type HROBJECT. See standard module RH_GET_MANAGER_ASSIGNMENT for an example>
    This profile can then be used to grant users access to their "second PERNR".
    Kind regards,
    Brent

  • My iPhone will not download more than 50mb from the app store.

    I have fast iPhone LTE unlimited service from my provider. If my download is larger than 50MB I have to switch to wifi. At work my wifi connection is 2.5MB and my LTE service is 20MB. How do I stay at the fast speed for the download?  Was this an oversite on apple's side?
    Waiting for help.

    it's supposed to be that way so you don't kill your data plan.

Maybe you are looking for