Increase the memory of applications

I know how to increase the memory on applications under MAC OS 9.
How do you increase the application memory under Mac OS X?
Thanks
Richard

You don't. OS X has dynamic memory allocation, so whenever an app needs more memory, OS X gives it some.

Similar Messages

  • How to Increase the memory size of a File in the Application Server

    Hello Abaper's
    I have generated a XML file for the data of  internal table (with 10 Records). When i download , i can see the XML file for the Entire 10 Records.
    But , while transferring the XML file to Applicationserver , it's  transferring only upto max 4 Records.I     assume that the memory is insufficient to  allocate 10  Records. Can we Increase the Memory size of the File on Application server. OR,  is there any error in My Source Code.
    Code i used to Transfer the XML File to Application server.
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE.
    IF sy-subrc EQ 0.
       LOOP AT it_xmltab INTO wa_xmltab.
           TRANSFER wa_xmltab TO FNAME.
       ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
    Regards
    Jv

    Hi,
    DATA : filename TYPE rlgrap-filename.
    DATA : doc_name TYPE char30.
    DATA : bin_size TYPE i.
    SELECT matnr matkl meins
           FROM mara INTO TABLE it_mara
           UP TO 10 ROWS.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
      EXPORTING
        i_filename           = filename
        i_xml_doc_name       = doc_name
      IMPORTING
        pe_bin_filesize      = bin_size
      TABLES
        i_tab_sap_data       = it_mara         "  contains  10 Records
      CHANGING
        i_tab_converted_data = it_xmltab.
    placing XML File in Appl. Server
    DATA : FNAME(60) VALUE 'xyz_File'.
    DATA : num TYPE i.
    DATA : xmldata(256) TYPE x.
      For Writing The data in Application Server
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE. " ENCODING DEFAULT.
    IF sy-subrc EQ 0.
      LOOP AT it_xmltab INTO wa_xmltab.
        TRANSFER wa_xmltab TO FNAME.
      ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
      For Reading The data in Application Server
    OPEN DATASET FNAME FOR INPUT IN BINARY MODE. " ENCODING DEFAULT.
    DO.
      IF sy-subrc EQ 0.
        READ DATASET fname INTO xmldata.
        WRITE :/ xmldata.
        Clear xmldata.
      ELSE.
        EXIT.
      ENDIF.
    ENDDO.
    CLOSE DATASET FNAME.
    at runtime i can see   
    it_mara  --> contain 10 records
    it_xmltab --> contain 7 lines (Each line size is 255 char). This table have XML format data,  (unknow format , with all numeric 
                        digits)
    it_xmltab is trasferred to application server , but the xml format is generated upto 4 records, and for the remaining records
    the XML format is not generated.
    the XML data in application server file is
    <?xml version="1.0"?><TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY1</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">PC
    </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY2</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">
    PC </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000001</MATNR><MEINS Datatype="C" Length="6">EA</MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000002</MATNR
    Regards
    JV

  • How to increase the memory for my weblogic server in Jdeveloper 12.1.2.0.0 ?

    Hey everyone,
    So as my title says, i'm trying to increase the memory for my weblogic server in my windows 7 64 bit machine, with 8GB ram.
    The values appear to be: JAVA Memory arguments: -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    I've done some search from this forum and i've added this to my jdev.conf:
    AddVMOption  -XX:MaxPermSize=1536M (in this one i've only changed the value)
    AddVMOption -Xmx1536M
    AddVMOption -Xms1536M
    And i've changed this: MEM_ARGS="-Xms1024m -Xmx1024m" in my startNodeManager.sh file
    I'm still getting the same line in my server but i need to change the values since i'm not getting the server to run my application very well (it gets stucked in loading my databases and graphs) and i think it will continue untill i get a heap exception error.
    Any ideas of how to change this?
    Regards,
    Frederico.

    Thanks Alejandro .
    I'm going to ask you another question and this one is quite important.
    Whenever i run my project a couple of times, i'm not able to retrieve the page, it just gets stuck on loading.
    It just stops the loading, like its a really really slow page. I'm not using a lot of rows in my database so i don't take to much memory but it doesn't load and i know everything is fine but i just added some graphs after testing it.
    Do you know why?
    In the console it says that everything is fine and shows the link for the page but it never loads completely until it gives a error because it does not respond in 600 seconds.
    Strange right?

  • How to increase the memory of oracle

    Hi,
    I am having oracle database version 11.0.1.6 on windows server 2003 R2.
    My Server Ram size is 12 GB.
    select * from V$SGAINFO;
    Fixed SGA Size     1335136     No
    Redo Buffers     12529664     No
    Buffer Cache Size     1073741824     Yes
    Shared Pool Size     176160768     Yes
    Large Pool Size     8388608     Yes
    Java Pool Size     16777216     Yes
    Streams Pool Size     8388608     Yes
    Shared IO Pool Size     0     Yes
    Granule Size     8388608     No
    Maximum SGA Size     1297321984     No
    Startup overhead in Shared Pool     58720256     No
    Free SGA Memory Available     0     
    I want to increase my memory for oracle because i need to insert 31 billion rows into a table with nologging. I am inserting them chunk by chunk and commit after each chunk. But it is taking 62 hours to insert the rows. So i think if i increase the memory i could reduce the time to insert the rows.
    I really am not sure whether i am thinking in the right way. Please advise. If i want to increase the memory please let me know how to increase it.
    Thanks in advance

    Are all columns in the WHERE clause indexed?
    Are statistics current & accurate for all tables & indexes?
    post EXPLAIN PLAN for SQL below
    PROCEDURE Pro_unpvt_usm_dr
    IS
    BEGIN
        FOR k IN (SELECT DISTINCT pr_id
                  FROM   unpvt_im_dr_e0322) LOOP
            INSERT /*+ append */ INTO unpvt_usm_dr_e0322
            SELECT pr_id,
                   nr,
                   col,
                   Corr(n, m) val
            FROM   (SELECT a.pr_id,
                           a.nr,
                           b.nr  col,
                           a.n,
                           b.val m
                    FROM   unpvt_usm_drpre1_e0322 a,
                           unpvt_im_dr_e0322 b
                    WHERE  a.pr_id = k.pr_id
                           AND b.pr_id = k.pr_id
                           AND a.col = b.col)
            GROUP  BY pr_id,
                      nr,
                      col;
            COMMIT;
        END LOOP;
        dbms_output.Put_line('POPULATED UNPVT_USM_DR_E0322');
    END pro_unpvt_usm_dr;

  • Increase the memory

    Hi,
    how to increase the memory size of a jvm.
    could u plz. help me.
    regards
    AMJ

    command line arg -Xms128m to get 128 megs

  • I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    The RAM in the retina model can not be upgraded.

  • Will increasing the memory from 4Gb to 8Gb make a big difference to the speed of my Intel Core Duo 2 Mac mini?

    Will increasing the memory from 4Gb to 8Gb make a big difference to the speed of my Intel Core Duo 2 Mac mini?

    Well, technically no, CPU will remain the same speed. But having 8 gig will give you some room for memory hungry apps and run better with multiple apps.
    Adding a SSD drive will give a second life to your macmini. I did mine a few weeks ago (240 gb SSD ) and also went from 2 to 4 gig ram. It's like having a new computer!
    Good luck!

  • Hi is there anyway I can increase the memory on me 8gb Ipod touch

    hi is there anyway I can increase the memory on me 8gb Ipod touch

    There are, however at least a couple of alternative that might be worth looking at:
    http://www.airstash.com/
    http://www.seagate.com/www/en-us/products/external/external-hard-drive/goflex-sa tellite
    There might be other solutions I'm not aware of, but one of those two might work for you.
    Regards.

  • Hi, I wonder if it is possible to increase the memory of the Macbook air 11 , 2011 model?

    Hi, I wonder if it is possible to increase the memory of the Macbook air 11 2011 model?
    My Macbook : 128GB flash storage
                              2GB memory ram
    thanks,
    Camila Costa

    No, at least you can't do it.

  • Increase the RAM for applications in Classic

    I am running Photoshop 5.0 in Classic environment. While it works fine for most tasks I am finding a few things won't work. An error occurs and the application requests more RAM, e.g when I try to perform some intensive filtering.
    In the system preferences I see that Classic has assigned 12MB to the Photoshop application. I would like to increase this to the recommended 32MB.
    Can someone advise how to do this ? - so far I have not found where/how to do this.
    Thanks.

    Hi, Macdady. You do it the same way you would if you were booting into OS 9: Clecik once on the icon of the closed Photoshop application (not an alias) to select it, then choose Get Info from the File menu, clcik the Memory arrow in the Get Info window to expand that portion of the window (if it isn't expanded already) and increase the Preferred memory allocation. There's no need to change the other two figures.
    Classic versions of Photoshop are happiest if you assign them at least three times as much RAM as the file size of the largest images you ordinarily work with. If you regularly handle images that are 10GB when they're open in Photoshop (they may be much smaller as compressed .jpg files when they aren't open), then a Preferred RAM allocation of 32MB is suitable. If you regularly handle images whose size (as displayed at the bottom of the Photoshop window) is much larger than 10GB, you'll want to allocate more than 32MB of RAM to the application.
    I believe OS X is able to manage the memory needs of Classic applications a little better than OS 9 did, but perhaps not very much better. OS X versions's memory requirements are, of course, managed far better by OS X.

  • HT1535 When I plug my ipad into the computer to sync a message pops up saying it can not sync because there is not enough memory in the itunes library. Do I need to increase the memory in my itunes library and how?

    When I plug my ipad into the computer to sync a message pops up saying that the ipad can not sync because there is not enough memory on the itunes library. Do I need to increase the itunes library memory and how do I do this, or do I just need to trasnfer things out of itunes? Thanks.

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with              
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    Before you reinstall the Apple software, also remove iCloud vi Control Panel Remove programs. The reinstall the Apple programs
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • How to increase the memory in Event Server

    I have this folowing error in the windows event observer (in french). The memory Event Server memory seems to be to small.  (English message traduction : Insufficient memory in the Event Server"" ).
    How can i increase this memory ? The physical server is dedicated to Crystal server.
    Type de l'événement : Erreur
    Source de l'événement : BusinessObjects_EventServer
    Catégorie de l'événement : EventServer
    ID de l'événement : 35750
    Date : 13/10/2010
    Heure : 09:56:51
    Utilisateur : N/A
    Ordinateur : SERVHLM3
    Description :
    Mémoire insuffisante dans l'Event Server
    I have this folowing error in same time... that talk about maximum limit Windows offices reach
    (English message traduction : "Attempt to allocate Windows 40 offices, only 19 have been allocated. It may be that the system has reached its maximum limit." ).
    Do you know how this can happen ? And how to correct this ?
    Type de l'événement : Erreur
    Source de l'événement : BusinessObjects_crproc
    Catégorie de l'événement : Général
    ID de l'événement : 49301
    Date : 13/10/2010
    Heure : 09:56:54
    Utilisateur : N/A
    Ordinateur : SERVHLM3
    Description :
    Tentative d'allocation de 40 bureaux Windows, seulement 19 ont été alloués. Il se peut que le système ait atteint sa limite maximum. Contactez votre administrateur système.

    As Ankur said, there are not parameters for this setting.
    Probably what you can do is, you can add this server to a defined server group.
    Generally you can assign additional resources to a server group. That could probably help you to increase performance.
    Regards
    Gowtham

  • If i can't increase the memory on an iphone, how do i NOT upload my entire itunes library?

    hi,
    i'm new to this whole smartphone thing.  but i've run into this frustration and can't seem to find my way around it.
    every time i hook up my phone - iphone 4 - to my computer - macbook 10.7 - they try to sync, and now i don't like having them both on the same wifi because they 'update' behind my back.  i don't want 3 days worth of music on my phone.  i would rather have more room on the phone for other stuff - apps and whatnot.
    i've set every checkbox i can find to NOT sync, and to NOT update, but  they do it anyway.  the songs that haven't been copied in their entirety  have left a place-saver of sorts - a ghost that seems to interfere with  playback of songs in a modified album, or if i just try to play from  the library - which i do, sometimes.
    someone on another post said that since you can't upgrade the memory on an iphone, that they should just delete some music, but it doesn't seem to let me - it puts it there without my permission, and even now that i've deleted all the music from the phone, the library is still full of all these 'ghost' songs that i don't know how to be rid of.
    thanks,
    nate.

    Now, one at a time:
    On Mac:
         Do you have the latest iTunes 11.0.4? If not download it here http://www.apple.com/support/itunes/
         Switch on  iTunes menu > View > Show Sidebar
         Connect and select iPhone under DEVICES in iTunes Sidebar.
         Go through the tabs (top right pane) Summary, Info, Apps, etc.
         and select and de-select what you want on iPhone.
         When finished, click Apply button (bottom right) and then click Sync.

  • How can increase the memory of my macbook pro retina??

    I have a macbook pro with retina display. It has 121 flash memory and i want to have more, is this possible??
    (sorry if the question is to stupid, but i dont understand to much about computers and memory)
    Thanks

    Actually, the storage (SSD, like a hard drive) is replaceable, though doing so voids your warranty. Check here, but make sure you find the exact model Mac you have.
    http://www.macsales.com

  • Can I increase the amount of memory allocation to my terminal or any other application to make it run faster ?

    Hi,
    I have a file that must be run using Terminal only. Its a pretty large file and i do remember that in WIndows we had an option where we could maximum run-time memory to speed up the process of a particular task. Is there any, such chance in Mac ?
    Thank you
    Teja

    Dear Kappy,
    Thank you so much for the reply. Basically this is what i am trying to figure out. I acknowledge that Mac and Apple are well built in every aspect. But i am just curious. Kindly bear.
    In Windows, when i go to Task Manager > Processes > I can right click on any of them, and i can increase the Memory that is allocated from Normal > Above Normal > High > Very High > Real Time. So i am trying to work and do the same on Mac too. Because there is an application (Terminal), which i want to be executed at a higher rate. 
    Yes i did try Renice as you mentioned. But there was "no immediate significant change". Then i also used a GUI version for renice, called "Process Wizard". Which also did the same.
    However thank you for the reply.
    God bless

Maybe you are looking for