SGA Tuning - Total, Free, Used Per Node in RAC

Hi,
I am working on Total, Free, Used MB for SGA per instance, similar to a chart in TOAD (AWR Browser). The report from TOAD is combination of all the nodes. I want to per node.
Can someone help me on the script.
Thanks,

893593 wrote:
Hi,
I am working on Total, Free, Used MB for SGA per instance, similar to a chart in TOAD (AWR Browser). The report from TOAD is combination of all the nodes. I want to per node.
Can someone help me on the script.
Thanks,
10:21:07 SQL> select * from gv$sgainfo
10:21:21   2  ;
   INST_ID NAME                      BYTES RES
      1 Fixed SGA Size                 2213656 No
      1 Redo Buffers                  7585792 No
      1 Buffer Cache Size               637534208 Yes
      1 Shared Pool Size               301989888 Yes
      1 Large Pool Size                16777216 Yes
      1 Java Pool Size                16777216 Yes
      1 Streams Pool Size                16777216 Yes
      1 Shared IO Pool Size                    0 Yes
      1 Granule Size                 16777216 No
      1 Maximum SGA Size              1553305600 No
      1 Startup overhead in Shared Pool    83886080 No
   INST_ID NAME                      BYTES RES
      1 Free SGA Memory Available          553648128
12 rows selected.

Similar Messages

  • When using imessage, does it count against your minutes in your plan for texting or is it totally free?

    when using imessage, dos it count against your minutes in your plan or is it totally free?

    iMessage does not use call minutes or SMS message quota in your plan.  It does use data when when the phone is connected to cellular data.  When you use WiFi, it's completely free.

  • Total memory used

    Hi,
    I am using oracle version 10.2.0.4 64 bit on open su
    i m facing memory relate problem ..
    my to out put
    top - 09:26:20 up 11 days, 7:54, 3 users, load average: 0.06, 0.02, 0.00
    Tasks: 128 total, 1 running, 127 sleeping, 0 stopped, 0 zombie
    Cpu(s): 0.0%us, 0.0%sy, 0.0%ni, 99.7%id, 0.3%wa, 0.0%hi, 0.0%si, 0.0%st
    Mem: 8163412k total, 8048108k used, 115304k free, 266632k buffers
    Swap: 17679492k total, 42544k used, 17636948k free, 7040980k cached
    SYS on 16-SEP-09 at alpaorcl>show sga
    Total System Global Area 5251268608 bytes
    Fixed Size 2028120 bytes
    Variable Size 1392512424 bytes
    Database Buffers 3841982464 bytes
    Redo Buffers 14745600 bytes
    oracle@TGalpha:/oracle/product/10.2.0/db_1/bin> free -m
    total used free shared buffers cached
    Mem: 7972 7855 116 0 264 6876
    -/+ buffers/cache: 715 7257
    Swap: 17265 41 17223
    This pc only oracle database is runing ..
    Thanks and Regards
    Amit

    7040980k cachedYou shouldn't worry at all. Those about 7G are potentially free memory. Linux tries to cache everything possible, but that memory will be used whenever needed.

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • Free music is not totally free, for me

    I signed up for the 12 Days of Christmas, and downloaded a few songs. But when I discovered that iTunes Store actually sent payment reciepts (card charges) for 0.00 for each and every title, I stopped downloading. Because then this music wasn't totally free, for me.
    My local Norwegian bank charges me NOK 2.50 (about 0.50 USD) each and every time I use my Visa paying card, even for these 0.00-charges. So 12 "free" downloads would cost me about 6 USD.
    Why do iTunes Store charge my account for downloading this "free" music? And why do you have to charge every title seperatly?
    Message was edited by: Sardine's

    The receipt confirms your transaction with the iTunes store. I'd be very surprised if Apple tried to collect NOK 0.00 from your credit card. If on the other hand you've had a statment with a NOK 2.50 charge for NOT transfering funds then I would both complain to your Credit Card company and report the issue to iTunes Feedback.
    tt2

  • Using sql to monitor free/used space

    Hi,
    Using the next sql statement
    SELECT /* + RULE */  df.tablespace_name "Tablespace",
           df.bytes / (1024 * 1024) "Size (MB)",
           SUM(fs.bytes) / (1024 * 1024) "Free (MB)",
           Nvl(Round(SUM(fs.bytes) * 100 / df.bytes),1) "% Free",
           Round((df.bytes - SUM(fs.bytes)) * 100 / df.bytes) "% Used"
      FROM dba_free_space fs,
           (SELECT tablespace_name,SUM(bytes) bytes
              FROM dba_data_files
             GROUP BY tablespace_name) df
    WHERE fs.tablespace_name (+)  = df.tablespace_name
    GROUP BY df.tablespace_name,df.bytes
    UNION ALL
    SELECT /* + RULE */ df.tablespace_name tspace,
           fs.bytes / (1024 * 1024),
           SUM(df.bytes_free) / (1024 * 1024),
           Nvl(Round((SUM(fs.bytes) - df.bytes_used) * 100 / fs.bytes), 1),
           Round((SUM(fs.bytes) - df.bytes_free) * 100 / fs.bytes)
      FROM dba_temp_files fs,
           (SELECT tablespace_name,bytes_free,bytes_used
              FROM v$temp_space_header
             GROUP BY tablespace_name,bytes_free,bytes_used) df
    WHERE fs.tablespace_name (+)  = df.tablespace_name
    GROUP BY df.tablespace_name,fs.bytes,df.bytes_free,df.bytes_used
    ORDER BY 4 DESC;from the source
    http://www.orafaq.com/wiki/Tablespacethe output is
    Tablespace                     Size (MB)              Free (MB)              % Free                 % Used                
    TS_UNDO                        4000                   3973,875               99                     1                     
    SYSAUX                         512                    293,5625               57                     43                    
    SYSTEM                         512                    224,3125               44                     56                    
    DATA                           70000                  24346,375              35                     65                    
    TS_TEMP                        5000                   460                    9                      91                    
    INDX                           30000                  2349,0625              8                      92why doesn't have the ts_temp tablespace almost free space?
    becouse if I use the management database sql developer option the ts_temp output is
    Tablespace                     Size (MB)              Free (MB)              % Free                 % Used                
    TS_TEMP                        null                    0                      null                  nullthanks in advanced

    The first half of your query seems to work -- just keep in mind that is doesn't consider that the tablespace datafiles might be auto-extendable up to some limit.
    The second half doesn't seem to work (I'm in 11g).
    Here's what I use to look at temp-space totals:
    select  f.tblspc  as "Tablespace"
         ,  nvl( sum( s.blocks * b.value ), 0 )  as "Bytes-Used"
         ,  f.bytes  as "Bytes-Available"
         ,  round( nvl( sum( s.blocks * b.value ), 0 ) / f.bytes * 100, 2 )  as "%-Used"
      from  ( select  tablespace_name       as tblspc
                   ,  sum(bytes)            as bytes
                   ,  'Temporary'           as tstype
                from  dba_temp_files
               group  by tablespace_name, 'Temp-TblSpc'
              union
              select  tablespace_name       as tblspc
                   ,  sum(bytes)            as bytes
                   ,  'Regular'             as tstype
                from  dba_data_files
               where  tablespace_name in ( select distinct temporary_tablespace from dba_users )
               group  by tablespace_name, 'Reg-TblSpc'
            )  f
            left join
            v$sort_usage  s  on ( f.tblspc = s.tablespace )
            join
            ( select  value
                from  v$parameter
               where  name = 'db_block_size'
            )  b  on (1=1)
    group  by f.tblspc
             , f.tstype
             , f.bytes
    order  by 1 ;And here's what I use to look at which users are using temp-space:
    select  t.tablespace
         ,  t.username
         ,  f.tstype  as type
         ,  round((sum(decode(segtype, 'SORT',     t.blocks,0))*b.bsz)/1024/1024,2)  as sort_mb
         ,  round((sum(decode(segtype, 'DATA',     t.blocks,0))*b.bsz)/1024/1024,2)  as data_mb
         ,  round((sum(decode(segtype, 'HASH',     t.blocks,0))*b.bsz)/1024/1024,2)  as hash_mb
         ,  round((sum(decode(segtype, 'INDEX',    t.blocks,0))*b.bsz)/1024/1024,2)  as indx_mb
         ,  round((sum(decode(segtype, 'LOB_DATA', t.blocks,0))*b.bsz)/1024/1024,2)  as lobs_mb
         ,  round((sum(decode(segtype, 'SORT', 0, 'DATA', 0, 'HASH', 0, 'INDEX', 0, 'LOB_DATA', 0
                                                 , t.blocks  ))*b.bsz)/1024/1024,2)  as othr_mb
         ,  round((sum(t.blocks)*b.bsz)/1024/1024,2)                                 as all_mb
         ,  round((max(u.blks)*b.bsz)/max(f.bytes)*100,2)   as "All-TS-%"
         ,  round((max(u.blks)*b.bsz)/1024/1024) ||'/'||
            round(max(f.bytes)/1024/1024,2)  as "All-TS-Usage-mb"
      from  v$tempseg_usage  t 
            cross join
            ( select value as bsz from v$parameter where name = 'db_block_size' )  b 
            left join 
            ( select  tablespace_name       as tablespace
                   ,  sum(bytes)            as bytes
                   ,  'Temporary'           as tstype
                from  dba_temp_files
               group  by tablespace_name
            union
              select  tablespace_name 
                   ,  sum(bytes)       
                   ,  'Regular'         
                from  dba_data_files
               where  tablespace_name in
                        ( select distinct temporary_tablespace from dba_users )
               group  by tablespace_name
            )  f  on ( t.tablespace = f.tablespace )
            left join
            ( select  tablespace, sum(blocks) as blks
                from  v$tempseg_usage
               group  by tablespace
            ) u  on ( t.tablespace = u.tablespace )
    group  by  t.username, t.tablespace, f.tstype, b.bsz
    order  by  t.tablespace, t.username ;Maybe that helps.

  • How to get Total Number of XML Nodes?

    Hello All,
    I have a Flash program I'm doing in Actionscript 3, using CS6.
    I'm using the XMLSocket Class to read-in XML Data. I will write some sample XML Data that is being sent to the Flash
    program below...
    I know with this line here (below) I can access the 4th "element or node" of that XML Data.
         Accessing XML Nodes/Elements:
    // *I created an XML Variable called xml, and "e.data" contains ALL the XML Data
    var xml:XML = XML(e.data);
    // Accessing the 4th element of the data:
    xml.MESSAGE[3].@VAR;          --->     "loggedOutUsers"
    xml.MESSAGE[3].@TEXT;         --->     "15"
         SAMPLE XML DATA:
         <FRAME>
    0               <MESSAGE VAR="screen2Display" TEXT="FRAME_1"/>
    1               <MESSAGE VAR="numUsers" TEXT="27"/>
    2               <MESSAGE VAR="loggedInUsers" TEXT="12"/>
    3               <MESSAGE VAR="loggedOutUsers" TEXT="15"/>
    4               <MESSAGE VAR="admins" TEXT="2"/>
         </FRAME>
    I'm new to Flash and Actionscript but I'm very familiar with other languages and how arrays work and such, and I know for
    example, in a Shell Script to get the total number of elements in an array called "myArray" I would write something like
    this --> ${#myArray[@]}. And since processing the XML Data looks an awful lot like an array I figured there was maybe
    some way of accessing the total number of "elements/nodes" in the XML Data...?
    Any thoughts would be much appreciated!
    Thanks in Advance,
    Matt

    Hey vamsibatu, thanks again for the quick reply!
    Ohhh, ok I gotcha. That makes more sense.
    So I just tried this loop below and I guess I could use this and just keep assigning an int variable to the output so
    when it finishes I will be left with a variable containing the total number of elements:
    for (var x:int in xml.MESSAGE)
         trace("x == " + x);
    *Which OUTPUTS the Following:
    x == 0
    x == 1
    x == 2
    x == 3
    x == 4
    So I guess I could do something like this and when the loop completes I will be left with the total number of elements/nodes...
    var myTotal:int;
    for (var x:int in xml.MESSAGE)
        myTotal = x;
    // add '1' to myTotal since the XML Data is zero-based:
    myTotal += 1;
    trace("myTotal == " + myTotal);
    *Which Prints:
    "myTotal == 5"
    Thanks again for you suggestions, much appreciated!
    I think that should be good enough for what I needed. Thanks...
    Thanks Again,
    Matt

  • Total Purchasing dollars per Vendor

    I would like to get a query where only for the Vendors which have "ERS" -Evaluated Receipt Settlement type slected , I want to get the total dollars purchased from that vendor.
    Which table gives the total Purchasing dollars per Vendor?

    Here is a quick approach using Excel:
    First extract vendors marked for ERS by using SE16 - table lookup for table LFM1. Add field XERSY (flagged for ERS) to the selection fields and use the AVL list as output option. Once you have the list, download it into Excel.
    Now run transaction MC$4, which will access information structure S012 (Purchasing Information System) and run the report by selecting a range of periods. There are a bunch of key figures available, from the original PO $ to invoiced $. Once you have selected the key figure/key figures you need, download the report into Excel.
    Now use the vblookup function in Excel, using the downloaded ERS vendors as reference to find the desired key figures from the second downloaded table.

  • How can free + used space tbs size, can someone explain

    Hi Gurus
    Can someone explain this, How can free + used space in a tablespace can be greater than size of a tablespace. What am I missing here . Thanks a lot .
    I am on 10.2.0.1, HP-UX
    14:38:52 SQL> select owner,sum(bytes), sum(BYTES) /1024/1024 "MB" from dba_segments where tablespace
    name='USERDB1ADATA' group by owner;
    OWNER SUM(BYTES) MB
    USERDB1A 839680000 800.78125
    1 row selected.
    14:40:42 SQL> select bytes, BYTES /1024/1024 "MB" from dba_data_files where tablespace_name='USERDB1
    A_DATA';
    BYTES MB
    3758096384 3584
    1 row selected.
    14:40:42 SQL> select sum(bytes) , sum(BYTES) /1024/1024 "MB"from dba_free_space where tablespace_nam
    e='USERDB1A_DATA';
    SUM(BYTES) MB
    3067412480 2925.3125
    1 row selected.
    14:40:43 SQL> select 839680000 + 3067412480 "used + free space" from dual;
    used + free space
    3907092480
    1 row selected.
    New DBA

    Good point, Howard, about the recycle bin. So I cleaned up, recreated the table, filled it, dropped it but did not purge it, and ...
    SQL> create table test.x tablespace test as select * from dba_objects where 1=2;
    Table created.
    SQL> insert into test.x select * from dba_objects;
    12617 rows created.
    SQL> commit;
    Commit complete.
    SQL> drop table test.x;
    Table dropped.
    SQL> with
      2  dbf_size as (select sum(bytes) size_
      3                 from dba_data_files where tablespace_name='TEST'),
      4  dbf_free as (select sum(bytes) free_
      5                 from dba_free_space where tablespace_name='TEST'),
      6  dbf_used as (select sum(bytes) used_
      7                 from dba_segments where tablespace_name='TEST')
      8  select size_, free_, used_, (size_ - free_ - used_) left_
      9         from dbf_size, dbf_free, dbf_used
    10  /
         SIZE_      FREE_      USED_      LEFT_
       5242880    5177344    2162688   -2097152
    SQL>and then I played around with my SQL and came up with
    WITH
    dbf_size AS (SELECT SUM(bytes) size_
                   FROM dba_data_files
                  WHERE tablespace_name='TEST'),
    dbf_free AS (SELECT SUM(bytes) free_
                   FROM dba_free_space
                  WHERE tablespace_name='TEST'),
    dbf_used AS (SELECT SUM(bytes) used_
                   FROM dba_segments
                  WHERE tablespace_name='TEST'),
    dbf_fbin AS (SELECT SUM(bytes) fbin_
                   FROM dba_segments
                  INNER JOIN
                        dba_recyclebin
                     ON (tablespace_name=ts_name
                         AND segment_name=object_name)
                  WHERE tablespace_name='TEST')
    SELECT      size_, -- tablespace size
         free_, -- free space reported
         used_, -- segment space used
         fbin_, -- segment space in recycle bin
         (size_ - free_ - used_ + fbin_) left_ -- 64K overhead per data file
      FROM      dbf_size, dbf_free, dbf_used, dbf_fbin
    /which does
    SQL> WITH
      2  dbf_size AS (SELECT SUM(bytes) size_
      3                 FROM dba_data_files
      4                WHERE tablespace_name='TEST'),
      5  dbf_free AS (SELECT SUM(bytes) free_
      6                 FROM dba_free_space
      7                WHERE tablespace_name='TEST'),
      8  dbf_used AS (SELECT SUM(bytes) used_
      9                 FROM dba_segments
    10                WHERE tablespace_name='TEST'),
    11  dbf_fbin AS (SELECT SUM(bytes) fbin_
    12                 FROM dba_segments
    13                INNER JOIN
    14                      dba_recyclebin
    15                   ON (tablespace_name=ts_name
    16                       AND segment_name=object_name)
    17                WHERE tablespace_name='TEST')
    18  SELECT     size_,
    19     free_,
    20     used_,
    21     fbin_,
    22     (size_ - free_ - used_ + fbin_) left_
    23    FROM     dbf_size, dbf_free, dbf_used, dbf_fbin
    24  /
         SIZE_      FREE_      USED_      FBIN_      LEFT_
       5242880    5177344    2162688    2162688      65536
    SQL> alter tablespace test add datafile 'C:\ORACLE\ORADATA\XE\TEST2.DBF' size 5m;
    Tablespace altered.
    SQL> WITH
      2  dbf_size AS (SELECT SUM(bytes) size_
      3                 FROM dba_data_files
      4                WHERE tablespace_name='TEST'),
      5  dbf_free AS (SELECT SUM(bytes) free_
      6                 FROM dba_free_space
      7                WHERE tablespace_name='TEST'),
      8  dbf_used AS (SELECT SUM(bytes) used_
      9                 FROM dba_segments
    10                WHERE tablespace_name='TEST'),
    11  dbf_fbin AS (SELECT SUM(bytes) fbin_
    12                 FROM dba_segments
    13                INNER JOIN
    14                      dba_recyclebin
    15                   ON (tablespace_name=ts_name
    16                       AND segment_name=object_name)
    17                WHERE tablespace_name='TEST')
    18  SELECT     size_, -- tablespace size
    19     free_, -- free space reported
    20     used_, -- segment space used
    21     fbin_, -- segment space used in recycle bin
    22     (size_ - free_ - used_ + fbin_) left_
    23    FROM     dbf_size, dbf_free, dbf_used, dbf_fbin
    24  /
         SIZE_      FREE_      USED_      FBIN_      LEFT_
      10485760   10354688    2162688    2162688     131072Message was edited by:
    Hans Forbrich
    Cleaned up the script and tested with second data file added to verify LMT overhead.

  • How to find out total memory used by each database ?

    I have two databases in one unix server.
    1) I need to know total memory used by each database.
    2) secondly, I want to know the detail used in each database.
    thanks

    For a database using dedicated shared servers, we can say total memory = 1 * SGA + sum (PGA) for all dedicated server processes (this excludes the size of the Oracle binary)
    For SGA, see
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref401
    or
    ipcs -mob | grep <oracle account> gives the SGA sizes for the 2 databases.
    for PGA,
    see PGA_USED_MEM column http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_2022.htm#sthref3837
    it's difficult to rely on Unix top/ps command because some Unix will add the shared memory to each dedicated server connection, some not.

  • EFax No Longer Provides 20 Free Faxes Per Month?

    Hello,
    I have a HP Photosmart 5515 with ePrint capability, and according to the HP Center, it mentions that HP has an arrangement with eFax to provide 20 free faxes per month. However, the instructions on the HP website is rather poor.  The instructions seems to point me to go to eFax to register for their service - I presume I need a fax#?  However, eFax charges (not a free service for HP customers) - http://www.efax.com/pricing    or    http://www.efax.com/lp/efax-hp
     I rarely use faxing but efaxing service would come in handy when I do need it.
    Could someone verify or provide a webpage outlining the instructions to set up the eFax service?
    Thanks!

    Hi,
    Actually there are two things you need to check:
    1. Is your printer in the scheme, there is a list:
         http://support.hp.com/us-en/product/HP-Photosmart-7510-e-All-in-One-Printer-series---C3/5070118/mode...
    2. Where you are, my old loan 7510 printer supports eFax (free first 20/month) but I could not get an account (for testing) because I live in Australia.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Total Workflow Associations per Site

    Greetz!
    We are planning our SharePoint 2013 Enterprise On-Premise Farm. We are relying heavily on a Nintex Workflow 2013 product which has a dependency on the 2010 Workflow Platform.
    Looking over SP2013's Boundaries and Limitations I see that the total workflow associations per site is limited to 1799 and being a boundary it is a static limit (actually a limit within the Service Bus that WF uses).
    Does this apply only to workflows that are running in the 2013 Platform?
    Is the document using "site" as in SPSite or is this a limitation on the number of SPWebs with a workflow association?
    Is the limitation 1799 instances of the same workflow or of all workflows running on the container?
    What happened to the SP2010 Boundaries and limits? If these limitations are for the 2013 Workflow Platform only then are the limitations for the 2010 Workflow Platform the same as they were in 2010? EDIT: I discovered that these settings were not published
    in the 2010 edition.
    Thank you!
    Love them all...regardless. - Buddha

    Hi,
    Workflow for SharePoint 2013 is on different platform with SharePoint 2010.
    In SharePoint 2013, the Service Bus supports a maximum of 1,799 subscriptions per scope. This maximum value includes the sum of both published and unpublished associations. This is in boundary limit type which cannot be exceeded by design.
    Please refer to the link below for workflow limit in SharePoint 2013:
    http://technet.microsoft.com/en-us/library/cc262787(v=office.15).aspx#Workflow
    Here is an article for SharePoint 2013 workflow fundamentals which might be help to understanding:
    http://msdn.microsoft.com/en-us/library/office/jj163181(v=office.15).aspx
    Please download document for Capacity planning for Microsoft SharePoint Server 2010 via:
    http://www.microsoft.com/en-us/download/details.aspx?id=21307
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • DB Space - Total / Free Size

    Here is the DB space usage in our system:
    Size          - 159.55 GB
    Free Size  - 19.71 GB
    Used - 88%
    Total Size - 220.78 GB
    Total Free Size  - 80.94 GB
    Total Used - 63%
    pl, let me know what is the different between these "Size" and "Total Size".
    also
    "Free Size" and "Total Free Size"
    - What will happen when it reach to 100% (when 19.71 GB is over). There do we need to add datafiles ?
    (currently all the tablespaces are in auto-extended mode)
    and
    what will happen when the total free size is over (80.94 GB)
    (There do we need to add additional storage)
    regards
    Edited by: zerandib on Sep 8, 2010 7:20 AM

    pl, let me know what is the different between these "Size" and "Total Size".
    I dont fully understand your question.   But if you are referring values from DBA cockpit (or DB02)
    Then Size refers to the total "current" size of all the database data files. 
    Your data files are set to auto extend with a maximum size specified.  "Total size" refers to the toal size of all the datafiles considering the max size value specified for auto extend (or filesystem limit).
    Hence, "Total Free Size - 80.94 GB"  is the free space calculated considring data files can grow to the maximum specified limits.
    While reaching this limit, you need to add additonal data files to the identified tablespaces either on the exisiting file system or a new filesystem depending on the free space availability there.

  • Is it better to use Invoke nodes or property nodes to set/get control values?

    I have a series of VI's that run in parallel, each to manage different functions- pumping, sensing, a fluid flow model, an experiment generator/runner.
    These need to exchange data, which I am currently doing using invoke nodes (that are all in subVIs), using methods "Set control value" and "Get control value". I find that every now and then (perhaps 1% of the time) the data isn't exchanged correctly and therefore the system doesn't work. I can imagine how "set" could go wrong if they happen simultaneously, and can devise ways of preventing this. However, the "Get" method suffers from the same problem. This is a major problem, because I want to leave it running for several hours.
    I could in
    principle achieve the same thing using property nodes and find myself wondering if this might be more reliable. But I don't want to change over only to find it makes no difference!
    Can anyone advise?

    You can use some kind of syncronization such as queues, occurances, or notifiers but I think the easiest way would be to create and action engine. This was only one action can execute at a time avoiding a "race condition". Possibly a write action and a read action might help. You also can add queues or notifiers into this concept. hope this helps.
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor

  • How to show/hide sliders on a slider control using property nodes?

    If I have a slider with multiple sliders on it how do I change which sliders are visible using property nodes? The only property I have found is making the entire control to be visible or not.  This is a possible solution to have two different controls, one slider with only one slider and another slider with two sliders overlapped, but not desirable.
    I found on a thread in the forum that it is possible but the user did not provide any specifics about which property it was. (http://forums.ni.com/ni/board/message?board.id=170&message.id=181279&query.id=34404#M181279)
    I would appreciate an example VI if possible (Preferred version is 8.5 but versios 8.2, 8.0, and 8.6 are available to me).
    Thank you in advance for the help,
    Aaron

    Just make them transparent! Here's a quick draft.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    HideSliders.vi ‏20 KB

Maybe you are looking for

  • APEX-The manullay created column is not getting updated in the database

    Dear all I have a form on page, which is created along with a report using Form on a Table with Report option. From the form I have deleted one field and recreated manullay as set the property as database column. When I am calling from the report pag

  • Bridge CC - 64 bit freezes when selecting a video file icon in content view

    On a 64-bit PC (12 core, 64 GIG RAM) with solid state hard drive and Nvidia Quadra 4000 video card with latest driver.  I have purged cache, I have reset preferences, I have changed shortcut to Run As Administrator.  I've tried to find a way to run i

  • App not supported by your device's current configurat​ion

    Hi, If I try install some apps from Appworld (especially the converted android apps) I get a message that it is not supported by my device configuration. Is this a regional issue in that only people in specific countries can access the apps? Cheers

  • HT1338 Mac pro wont go into sleep mode

    My mac pro has to physically be restarted everytime it should go to sleep.  I run it through a flat screen TV and when I go to sit down and use my computer the screen is black and the indicater light on the front of my computer is solid, not flashing

  • Form development & searching for the contents

    Dear all, In portal, I need a simple form to capture some information. Eg Vehicle Number, driver name etc. I also want to search on this form content. What will be a good option instead of custom developments. XML forms can be used but can't be searc