memory of the PGA

Hi all

SQL uses memry SGA and collections use PGA in memory only. Is this true?

Select * twice;

The sql above must use SGA and PGA together?

One of SGA components is shared pool. That is your executable version of SQL and PL/SQL. So each SQL uses SGA. SGA is global. Once the executable version of SQL (cursor) is stored in the Shared Pool its accessible through the session.

On the other hand, PGA's private memory. Its accessibility is limited at the level of the session. That a single session stores in is not visible to the other session. One of the aims of PGA is to store values of Bind.

Consider this

Select * from emp where empno: =: emp_no;

Here emp_no is a variable binding

The executable version (cursor) to the SELECT statement is stored in the pool shared the SGA. And the value of the Bind variable to: emp_no is stored in the PGA.

When several session execute the same SQL from different link so the executable (cursor) is shared between the session, while the value of the bind variable is kept secret to each session of the value of the variable.

When you talk about specific DOUBLE, you must remember DUAL is a very special table and its treaties very differently considered an ordinary table. For example, if you do not select the column DUMMY table DOUBLE then 10g on oracle will not go for a table scan, which means that it will not be a real IO. He'll make a QUICK DOUBLE. Here is an example.

SQL > set autotrace traceonly explain
SQL >
SQL > select * from double;

Execution plan
----------------------------------------------------------
Hash value of plan: 3543395131

--------------------------------------------------------------------------
| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT |      |     1.     2.     2 (0) | 00:00:01 |
|   1.  TABLE ACCESS FULL | DOUBLE |     1.     2.     2 (0) | 00:00:01 |
--------------------------------------------------------------------------

SQL > select 1 double;

Execution plan
----------------------------------------------------------
Hash value of plan: 1546270724

-----------------------------------------------------------------
| ID | Operation | Name | Lines | Cost (% CPU). Time |
-----------------------------------------------------------------
|   0 | SELECT STATEMENT |      |     1.     2 (0) | 00:00:01 |
|   1.  QUICK DOUBLE |      |     1.     2 (0) | 00:00:01 |
-----------------------------------------------------------------

Your next question

Why use the collections only PGA?

Because they are the private component that is accessible at the level of the session. And that's why they are stored in the PGA. Don't forget no SGA is global and PGA is local. And this is the reason why the PGA is considered very expensive area and its need to be used properly. And it's one of the reasons why the collection should be used with great caution.

Tags: Database

Similar Questions

  • Details on using the memory of the PGA

    Hello
    10g R2 on Win 2003 server, DB control (local EM for a DB) I have no data in the details on the PGA memory use.
    Needs to be enabled or disabled for data?
    Thanks in advance.

    Make sure the following initialization parameters are

    WORKAREA_SIZE_POLICY = AUTO
    PGA_AGGREGATE_TARGET = # n, where n can be a number the most of your available RAM after SGA and other applications that run on the server has been allocated enough RAM.

    Then check the result of the following queries after sufficient running on the database processes

    Go head
    set head on
    column name format a60
    format values in column 9,999,999,999,999,999
    Select * from gv$ pgastat INST_ID select by name;

    Go head
    set head on
    column BYTES_PROCESSED 9,999,999,999,999,999 format
    column EST_RW_EXTRA_BYTES format 9,999,999,999,999,999
    Select inst_id, round(pga_target_for_estimate/1024/1024) as target_size_MB,
    bytes_processed, estd_extra_bytes_rw as est_rw_extra_bytes,
    estd_pga_cache_hit_percentage as est_hit_pct,
    estd_overalloc_count as est_overalloc
    from gv$ pga_target_advice by INST_ID select, target_size_mb;

  • 'overall target of auto PGA' is too small compared to the overall target of the PGA

    Hi all.

    The database is 11gR 2 (11.2.0.3) on a linux machine.

    'global setting of target PGA' is about 25 giga size.
    'overall target of auto PGA' is about 5.5 gigabytes size
    'Allocated total PGA' is about 25 giga size.
    "total PGA inuse" is about 19.5 giga size.

    According to the manual of the oracle, "total target auto PGA" means:

    Amount of memory PGA the Oracle database can use workspaces running in automatic mode. This amount comes dynamically PGA_AGGREGATE_TARGET initialization parameter value and work load current workspace and set continuously from the Oracle database.

    If this value is small compared to the value of PGA_AGGREGATE_TARGET, then a large amount of memory on the PGA TOUR is used by other components of the system (for example, PL/SQL or Java memory) and little is left for work areas. The DBA should ensure that enough memory PGA is left of workspaces running in automatic mode

    -----------------------------------------

    My question is following:

    1. what component consumes about 20 gigabytes size of the pga (total 25 giga).
    If the PL/SQL or Java memory consumes 20 giga size, isn't too compard to a total of size pga (25giga)?
    Does rely on applications? (we have procedures/packages in the database server-side)

    2. the total amount allocated (25 giga) PGA is close to "Global PGA target parameter (25giga).
    "total PGA inuse" is about 19.5 giga.

    Is that mean that data from free space of 5.5 giga size PGA?
    I'm a bit confused between 'PGA Total allocated' and 'total PGA inuse.

    ------------------------------------

    {code}

    Select name, decode (unit, 'bytes', round(value/1024/1024), value) mega_value, unit
    v $ pgastat



    aggregate the target PGA 25 600 bytes parameter
    overall target of auto PGA 5 505 bytes
    global memory related to 1024 bytes
    Total PGA inuse 19 483 bytes
    PGA total allocated 25 503 bytes
    PGA maximum allocated 53 426 bytes
    total number of freeable memory PGA 2 486 bytes
    number of processes 5 946
    Max process count 6 039
    PGA memory freed to OS 39,677,868 bytes
    Total PGA used to auto workareas - bytes
    Maximum PGA used to auto workareas 15 543 bytes
    Total PGA used for manual workareas - bytes
    Maximum PGA used for manual workareas 38 293 bytes
    during the allocation, count 3 733
    the treated bytes 17,288,505 bytes
    3 144 169 bytes read or written additional bytes
    cache hit percentage 85%
    has count 13,254,278 (total)


    {/ code}

    Thanks in advance.

    Best regards.

    Published by: 869578 on October 7, 2012 20:39

    869578 wrote:
    -----------------------------------------

    My question is following:

    1. what component consumes about 20 gigabytes size of the pga (total 25 giga).
    If the PL/SQL or Java memory consumes 20 giga size, isn't too compard to a total of size pga (25giga)?
    Does rely on applications? (we have procedures/packages in the database server-side)

    The place to look is v$ process_memory (see, for example this blog post - ignore the fact that he speaks a bug 3 years ago, the SQL to query the memory usage is the bit important to you).

    2. the total amount allocated (25 giga) PGA is close to "Global PGA target parameter (25giga).
    "total PGA inuse" is about 19.5 giga.

    Is that mean that data from free space of 5.5 giga size PGA?
    I'm a bit confused between 'PGA Total allocated' and 'total PGA inuse.

    Basically Yes, your system currently thinks only about 5.5 GB of memory that can be called on any process requiring more memory to work. When a process requests from memory (for example, sorting) it will not necessarily return at the time wherever he has done with her, because she plans to use it again in the near future. This is why the amount awarded may be higher than currently in use. If another process.

    ------------------------------------

    {code}

    Select name, decode (unit, 'bytes', round(value/1024/1024), value) mega_value, unit
    v $ pgastat

    aggregate the target PGA 25 600 bytes parameter
    overall target of auto PGA 5 505 bytes
    global memory related to 1024 bytes
    Total PGA inuse 19 483 bytes
    PGA total allocated 25 503 bytes
    PGA maximum allocated 53 426 bytes
    total number of freeable memory PGA 2 486 bytes
    number of processes 5 946

    {code}

    You have almost 6 000 live processes - and it takes a couple of MB per process just to get a few bits of SQL, is not really surprising that you have already allocated about 19 GB of memory - what is an average of 3 MB per process. You CAN see, however, that a few processes have to run away with a big piece, which is why you can watch process $ v and v$ process_memory in detail.

    Concerning
    Jonathan Lewis

  • question about the use of the PGA and TEMP

    Hello
    We had a situation whereby OEM reported that because the PGA was too small for a period of time that e/s additional on the TEMP was created. So does that mean that the TEMP has acted as a pseudo PGA.

    concerning

    Take a look at these threads
    Re: Problem with memory PGA - Oracle 10.2.0.4 on windows 2003
    Re: Details on using in the memory of the PGA



    Oracle database FAQ

  • When memory is allocated to a variable in the language PLSQL and where in the PGA?

    Hi all

    When and where the memory is allocated to a variable?

    declare

    number of my_variable;

    number of my_var0;

    my_var1 number: = 0;

    Start

    my_variable = 1;

    -logical treatment

    end;

    In the example above

    one) because my_var0 is not assigned a number of execution block will be assigned memory with a value of waste inside?

    (b) where my_var1 and my_variable (and my_var0 if it is allocated memory) will have memory allocated (is it in the stack of the PGA space)?

    (c) if the my_var0 is allocated memory in his statement is this rule which applies to any oracle data type defined or defined by the user files or objects viz?

    Can u please help me with an informative article about the allocation of memory in Oracle. Thanks in advance.

    The initial value of a PL/SQL variable is NULL if you do not provide one when it is declared.

    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25519/fundamentals.htm#LNPLS195

    PL/SQL variable are stored in a private SQL area Global user (UGA) area, and the UGA may be in the PGA or the SGA according to the type of connection you have.  Details of the architecture of memory are documented in the concepts guide.

    Memory architecture

  • WHY THE PGA IS REQUIRED FOR EACH USER?

    Hello everyone;

    I have a question about PGA.

    WHY THE PGA IS REQUIRED FOR EACH USER?

    What I got from google...

    Even if information analysis of SQL or PL/SQL is already available in the library of shared pool cache,

    the value that the user want to execute the statement select or update cannot be shared.

    I can't realize that someone can show an example of clear, if possible?

    DB version is 10.2.0.4.0

    OS: oracle linux 5.5

    Thanks in advance...

    PGA is memory private belonging to a specific user. This private memory contains of these pieces that is not supposed to be shared with others. For example, when you sort a part of the data, that does not mean all he wants too. If Oracle retains the sorted data requested by you in your own PGA. Similarly, if you want to query a table with a value of 10, it does not mean that all want the same thing. If these structures are stored in the PGA. For a more detailed description, read the link given by Hoek.

    HTH

    Aman...

  • How to calculate the use of the memory of the objects in Oracle/Collections

    Hi all
    Our application uses a large hierarchical object to store customer information and dependents. I am looking to display the amount of memory used to contain all the embedded objects and collections when filled with data.

    Please advice!

    Thank you

    PL/SQL collections are stored in the PGA. For example, you can monitor the use of the PGA of the meeting (s) to see how much PGA they use.

    SELECT sid, name, value
      FROM v$statname name
           JOIN v$sesstat using (statistic#)
     WHERE name.name in ('session pga memory', 'session pga memory max' )
    

    This will show, for each session, the current PGA consumed by the session and the high tide of the consumption of the PGA by this session. You can join V$ SESSION and add additional predicates to narrow things down to specific sessions you are interested in.

    Justin

  • Metric of the influence of the size of the PGA and UGA County cursors

    Hello!

    If I have the right to understand,
    the child cursors County growthing indirectly affects the size of the PGA and UGA,
    If that's true, how to receive absolute metric (* GA, no Shared Pool)?


    Thank you
    Paul

    Published by: Paul on 06.02.2012 21:28

    Hi Paul,.

    To be more precise, I refer to the implicit cursors that are stored in the library cache. Please do not confuse with the cursors that are defined explicitly in pl/sql.

    For each identical sql statement, oracle will create the shared cursor (library cache), if this is the first time that the statement is then executed as said previously it will create the cursor in LB, so is the second time, the same SQL statement is executed then oracle will share already created the cursor to the second statement.
    Under normal circumstances for each identical instruction, there are 1 parent and 1 child of the cursor.

    Consider the example next where the sql statement appears to be the same but do not share already created cursor and therefore it must create a new.

    Session executed following queries:

    Select the name of the employee; -> It is that first time sql is executed, then oracle will open a new cursor. In a specific cursor, you have the code sql and other execution information.

    Session B executed after the request:

    Select the name of the employee; -> Here statement SQL makes sense even with above but this will create a new cursor, so already open for session A will not be shared. Note here that the SELECT is uppercase, then oracle think it's the different statement and thus create a new cursor.

    It's an example where difference in uppercase letter oracle thinks it's a new statement. But there are other schenarios where the same situation occurs.
    Another reason for cursor not shared are in V$ SQL_SHARED_CURSOR.

    Although oracle database running in the situation where the sliders are not shared, then this can lead to performance impact hugh like lock in shared long, shared pool leak memory pool, library catch latch etc.. More important, which will require another cursor important to eliminate memory to place a new

    I hope you already know, what is analysis difficult. If this increase the situation of hard analysis, which may further affect the performance.

    Let me know in case of doubts

    Concerning

    Published by: 909592 on 7 February 2012 13:46

    Published by: 909592 on 7 February 2012 13:49

  • Notice of the PGA in AWR report

    Hello!

    So, how can I increase it now? I could not follow.

    If someone could guide?
    Warning:  pga_aggregate_target was set too low for current workload, as this
              value was exceeded during this interval.  Use the PGA Advisory view
              to help identify a different value for pga_aggregate_target.
    PGA Aggr Target Stats                       DB/Inst: test/test  Snaps: 6220-6221
    -> B: Begin snap   E: End snap (rows dentified with B or E contain data
       which is absolute i.e. not diffed over the interval)
    -> Auto PGA Target - actual workarea memory target
    -> W/A PGA Used    - amount of memory used for all Workareas (manual + auto)
    -> %PGA W/A Mem    - percentage of PGA memory allocated to workareas
    -> %Auto W/A Mem   - percentage of workarea memory controlled by Auto Mem Mgmt
    -> %Man W/A Mem    - percentage of workarea memory under manual control
    
                                                    %PGA  %Auto   %Man
        PGA Aggr   Auto PGA   PGA Mem    W/A PGA     W/A    W/A    W/A Global Mem
       Target(M)  Target(M)  Alloc(M)    Used(M)     Mem    Mem    Mem   Bound(K)
    - ---------- ---------- ---------- ---------- ------ ------ ------ ----------
    B         54          4       80.3        0.0     .0     .0     .0      4,096
    E         54          4       80.5        0.3     .4  100.0     .0      2,113
              -------------------------------------------------------------
    Thanks in advance a ton.

    user645399 wrote:
    Hello!

    So, should I do something like that

    alter system set pga_aggregate_target=218M;
    

    Please advice.

    Thank you.

    Yes increase your pga to 128M. Since oga_aggregate_target is the dynamic parameter. so to increase as

    SQL > alter system set pga_aggregate_target = 218M;

    See you soon

    Neeraj-

  • Execute a statement select twice in one sitting, what is happening in the PGA?

    Hi guys,.

    Oracle 10g.
    I was just asked while executing a select twice in one sitting, what is happening in the PGA?
    I know that oracle does not need to analyze this statement because of the LMS "library cache", and perhaps not necessary to perform the work of IO because BMG "cache db pads" oracle, but is the first fetch result set cached in the PGA, so that it could be directly returned to the user without doing anything to the LMS?
    I'm not familiar with the details of the structure of the memory in Oracle, that contain exactly PGA?

    Thank you very much!

    The results would be extracted once again, not cached. By default.

    However, in 11g, you can try using the CLIENT_RESULT_CACHE (which should work with a sqlplus Oracle client).
    See http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/memory.htm#PFGRF961

    Hemant K Collette

  • How to query the current free memory in the shared pool

    Hello

    Someone please tell me how to check the current uses of shared pool.

    Any query/Tip/document would be appreciated?

    If you have found errors ORA-04030 then it is more likely at the PGA instead of the SGA. If you had problems with the shared pool you would probably see shared pool latch wait events and others.

    For the ORA-04030 errors, depending on your operating system, can be solved by adding more memory to the operating system or to reduce the amount of work that is performed.

    HTH!

  • updated my iMAC 7.1 with 4 GB of memory with the intention to go to El Capitan, but after reading how it slows down the speed, I was wondering if going to Yosemite is a better choice.

    Updated my iMAC 7.1 with 4 GB of memory with the intention to go to El Capitan, but after reading the slowness becomes the MAC, it would be best to go with Yosemite?

    If you upgrade the amount of RAM your iMac should be able to handle El Capitan nicely.

  • .. system memory of the application

    Can anyone suggest anything? Computer slowed right down and requested force quite apps, with the message: your system is out of memory for the application.

    As suggested in another post, I ran an EtreCheck and the report is quoted below. I deleted some adware. Should I look for in this new?

    EtreCheck version: 3.0.3 (307)

    Report generated 2016-09-12 13:04:59

    Download EtreCheck from https://etrecheck.com

    Duration 12:06

    Performance: Poor

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click [delete] to remove the adware.

    Problem: Computer is too slow

    Description:

    "Your system is running out of application memory"

    Hardware Information:

    iMac (27 inch, at the end of 2013)

    [Data sheet] - [User Guide] - [warranty & Service]

    iMac - model: iMac14, 2

    1 3.2 GHz Intel Core i5 CPU: 4 strands

    8 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1600 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1600 MHz

    0/DIMM1 BANK

    Vacuum

    BANK 1/DIMM1

    Vacuum

    Bluetooth: Good - transfer/Airdrop2 taken in charge

    Wireless: en1: 802.11 a/b/g/n/ac

    Video information:

    NVIDIA GeForce GT M 755 - VRAM: 1024 MB

    iMac 2560 x 1440

    Software:

    OS X El Capitan 10.11.3 (15 d 21) - since the start time: 5 hours

    Disc information:

    ST1000DM003 disk HARD APPLE disk0: (1 TB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    Macintosh HD (disk 1) /: 999,03 go-go (777,47 free)

    Storage of carrots: disk0s2 999.35 GB Online

    USB information:

    Western Digital My Passport 0748 1 TB

    disk2s1 (disk2s1) < not mounted >: 32 KB

    disk2s2 (disk2s2) < not mounted >: 29 KB

    disk2s3 (disk2s3) < not mounted >: 29 KB

    disk2s4 (disk2s4) < not mounted >: 29 KB

    disk2s5 (disk2s5) < not mounted >: 29 KB

    disk2s6 (disk2s6) < not mounted >: 262 KB

    disk2s7 (disk2s7) < not mounted >: 262 KB

    disk2s8 (disk2s8) < not mounted >: 262 KB

    My Passport for Mac (disk2s10) / Volumes/My Passport for Mac: 500,02 (Go 345,38 free)

    My Passport for Mac 2 (disk2s12) / Volumes/My Passport for Mac 2: 499.88 (413,28 free go-go)

    Apple Inc. BRCM20702 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. FaceTime HD camera (built-in)

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    Guardian:

    Mac App Store and identified developers

    Adware:

    ~/Library/LaunchAgents/Jimbrie.AppVemoral.plist

    ~/Library/LaunchAgents/Jimbrie.btvlit.plist

    ~/Library/LaunchAgents/Jimbrie.dolnwoad.plist

    ~/Library/LaunchAgents/Jimbrie.uadpte.plist

    ~/Library/LaunchAgents/Manroling.update.plist

    ~/Library/LaunchAgents/Smokyashan.update.plist

    ~/Library/LaunchAgents/Yeti.notification.plist

    7 adware files found. [Remove]

    Kernel extensions:

    / System/Library/Extensions

    com [no charge]. FTDI.driver.FTDIUSBSerialDriver (2.2.14 - 2016-02-27) [Support]

    com.Line6.driver.xtaudio [no charge] (7.2.4 - SDK 10.7 - 2016-02-27) [Support]

    [no charge] com.m - audio .midisupport .driver .usb (M-Audio USB MIDI support 1.1 - 2016-02-27) [Support]

    [no charge] com.tomtom.driver.UsbEthernetGadget (1.0.0d1 - 2016-02-27) [Support]

    Startup items:

    M - Audio Firmware Loader: path: Library/StartupItems/M-Audio Firmware Loader

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [no charge] 6 tasks Apple

    [loading] 153 jobs Apple

    [running] Apple 59 jobs

    [killed] Apple 18 jobs

    18 killed processes lack of RAM

    Launch system demons:

    [no charge] 45 Apple jobs

    [loading] 154 jobs Apple

    Apple tasks 75 [performance]

    [killed] 13 tasks of Apple

    13 killed process lack of RAM

    Launch officers:

    [loading] com.hp.help.tocgenerator.plist (2009-07-28) [Support]

    Launch demons:

    [loading] com.adobe.fpsaud.plist (2016-06-29) [Support]

    com.Line6.l6ksettingmgr.plist [running] (2013-04-03) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2014-02-26) [Support]

    [loading] jp.co.canon.MasterInstaller.plist (2015-09-17) [Support]

    User launch officers:

    [loading] Jimbrie.AppVemoral.plist (2016-08-20) Adware! [Remove] 

    ~/Library/Application Support/Jimbrie/Jimbrie.app/Contents/MacOS/AppYM

    [loading] Jimbrie.btvlit.plist (2016-08-20) Adware! [Remove] 

    ~/Library/Application Support/Jimbrie/Jimbrie.app/Contents/MacOS/AppYM

    [loading] Jimbrie.dolnwoad.plist (2016-08-20) Adware! [Remove] 

    ~/Library/Application Support/Jimbrie/Jimbrie.app/Contents/MacOS/AppYM

    [loading] Jimbrie.uadpte.plist (2016-08-20) Adware! [Remove] 

    ~/Library/Application Support/Jimbrie/Jimbrie.app/Contents/MacOS/AppYM

    [pas] Manroling.Update.plist (2016-02-10) Adware! [Remove] 

    [loading] Smokyashan.Update.plist (2016-08-20) Adware! [Remove] 

    ~/Library/Application Support/Smokyashan/Smokyashan.app/Contents/MacOS/AppNOS

    [loading] com.nchsoftware.wavepad.schedule.LikeSurvey.plist (2014-02-23) [Support]

    [loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist (2012-12-04) [Support]

    Yeti.notification.plist [running] (2016-04-13) Adware! [Remove] 

    /Applications/Yeti.app/Contents/MacOS/Yeti

    Items in user login:

    Application of system events (/ System/Library/CoreServices/System Events.app)

    E-mail application (/ Applications/Mail.app)

    Hidden MyTomTomSA Application (/ Applications/MyTomTomSA.app)

    iTunesHelper hidden Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Dropbox application (/ Applications/Dropbox.app)

    HP Scheduler application (/ Library/Application Support/Hewlett Packard/Software Update/HP Scheduler.app)

    HP product search request (/ Library/Application Support/Hewlett-Packard/Customer Participation/HP product Research.app)

    Plug-ins Internet:

    Flip4Mac WMV Plugin: 2.3.8.1 (2011-01-13) [Support]

    FlashPlayer - 10.6: 22.0.0.209 - SDK 10.9 (2016-07-17) [Support]

    QuickTime Plugin: 7.7.3 (2016-01-27)

    Flash Player: 22.0.0.209 - SDK 10.9 (2016-07-17) [Support]

    EPPEX plugin: 10.0 (2015-04-10) [Support]

    Default browser: 601 - SDK 10.11 (2016-01-27)

    JavaAppletPlugin: 15.0.1 - 10.11 (2012-06-18) check the version of the SDK

    OfficeLiveBrowserPlugin: 12.3.6 (2013-03-20) [Support]

    SharePointBrowserPlugin: 14.6.7 - SDK 10.6 (2016-08-30) [Support]

    Silverlight: 5.1.40416.0 - SDK 10.6 (2015-05-20) [Support]

    iPhotoPhotocast: 7.0 - 10.7 SDK (2012-04-22)

    User Plug-ins internet:

    RealPlayer Plugin: unknown

    3rd party preference panes:

    Flash Player (2016-06-29) [Support]

    Flip4Mac WMV (2011-01-13) [Support]

    Line6AudioMIDI (2012-04-26) [Support]

    Time Machine:

    Mobile backups: OFF

    Automatic backup: NON - automatic backup disabled

    Volumes to back up:

    Macintosh HD: Disc size: 999,03 GB disc used: 221,55 GB

    Destinations:

    My Passport for Mac 2 [Local]

    Total size: 499,88 GB

    Total number of backups: 14

    An older backup: 14/09/2015, 07:17

    Last backup: 16/09/2015, 14:21

    Backup disk size: too small

    Backup size GB 499,88 < (drive used 221,55 f X 3)

    Top of page process CPU:

    6% kernel_task

    4% AppNOS

    3% WindowServer

    0% Dropbox

    0% MyTomTomSA

    Top of page process of memory:

    4.88 GB kernel_task

    AppNOS 369 MB

    Mdworker (29) 279 MB

    Com.apple.WebKit.WebContent (2) 57 MB

    Mds_stores 57 MB

    Virtual memory information:

    41 MB free RAM

    used 7.96 GB RAM (446 MB Cache)

    49.33 GB used Swap

    Diagnostic information:

    Sep 12, 2016, 07:44:40 self-test - spent

    Sep 12, 2016, 07:38:18 AM/Library/Logs/DiagnosticReports/Microsoft Outloo_2016-09-12-073818_ [redacted] .hang

    UNKNOWN PATH

    September 12, 2016, ~/Library/Logs/DiagnosticReports/AppYM_2016-09-12-065909_[redacted].crash 06:59:09

    / Users/USER/Library/Application Support/Jimbrie/Jimbrie.app/Contents/MacOS/AppYM

    I suggest that you run Etrecheck again after removing adware, to see if it ALL correctly deleted and then see if the system works without problem.

  • I have an Air of MacBk 2010 &amp; I get the mssg "system is out of memory of the application", so it is impossible to open the Mail, Safari, etc.. But sometimes I can't. I deleted photos or videos for free space; no luck. What should do?

    I get the message "your system has wearied of the memory of the Application." So I can not open Mail, Safari, or any application.  However, I can periodically, the first thing in the morning, after I Shut Down & power up, not after a reboot.  I deleted a lot of photos and videos to free up space, but not luck.  IPhotos, I get the mssg. "cannot import pictures because not enough free space on the volume containing the iPhoto library."     The problem might be related to: 1 overheating, 2 PureVPN although I installed about 5 months ago and it was very good; 3. the MB Air was diverted (I'm worried that PureVPN may have something to do with it).  Or is this a sign that I need to get a new laptop?  Thanks for any help you can offer!

    release disk space and short-term memory are two different things. If your computer is running more disk space, it will have a negative effect on your system.

    Please post a report of etrecheck for further analysis.

    www.etrecheck.com

  • DesignJet T2530: How to save the file to the memory of the printer to the flash player?

    We had printed a 19 page file with our DesignJet printer and then deleted the file from our desktop. Customer had need another copy so we printed from the file saved in the memory of the DesignJet. Question: How can I put that it was saved on a USB? Thank you very much!

    Hello

    But remember this file is a temporary file until that backup file more, all are County for sequential printing job. It is not possible to copy for the thumb of the printer.

    Thank you
    Rashed

    I'm not an employee of HP, but I am an engineer @ HP Partner and I share my knowledge of my own time.

    If your problem is resolved please click the button "accept as a Solution.

    If my answer was helpful, please click the 'Thumbs Up' to say 'thank you '.

Maybe you are looking for