Cannot increase db_cache_size

The oracle version is 9.2.0.7
I want to increase db_cache_size dynamically to 6gb but i cannot increase it to even 2 gb. It is 1.5gb right now. The overall system memory is 16gb.
Can anyone tell what is the reason
sys@kishore> alter system set DB_CACHE_SIZE=3000m;
alter system set DB_CACHE_SIZE=3000m
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-00384: Insufficient memory to grow cache

You might have mistaken,
if you have a 32-bit Oracle instance, the address space is only 2 to the power of 32, or 4 GB, on all platforms (except on Linux/Windows, the address space is actually 2 to the power of 31). So regardless how big your physical RAM is, the max addressable memory to 32-bit Oracle is 4G.
and check here
http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0410evans/#PartI
In general, 32-bit operating system kernels can exploit four gigabytes of real memory (the physical RAM shared by the operating system and the running applications), whereas 64-bit operating system kernels can exploit more than this. Of course, some 32-bit operating system kernels can exploit more than four gigabytes of memory, but don’t do this as well as 64-bit kernels.

Similar Messages

  • Need to increase db_cache_size

    Hi Forum Friends,
    I have one concern, On one production server as per ADDM analysis report we need to increase db_cache_size at db level .
    According to my knowledge, SGA_MAX_SIZE= db_cache_size+shared_pool size + large pool size . Pls correct if i am wrong ?
    As per my DB settings:
    ============================================================
    sga_max_size = 70G
    db_cache_size = 60928M
    shared_pool_size = 8G
    large_pool_size= 0
    sga_target= 0
    As per ADDM report db_cache_size should be 64,768M
    ================================================================================================================
    But If my above statement is correct then we cannot increase db_cache_size untill we will increase sga_max_size  so that all parameter get involved in it ?
    Regards,
    Vishal Raina

    The SGA = Fixed size + Variable size + DB Cache Buffers + Online Redo Buffers.  Try querying v$sga and v$stastat to see how your space is allocated.
    Also Oracle has a strong tendency to over-identify space needs, that is, just because one of Oracle's features suggests more space is needed does not mean it really is.  You may be able to relieve some of the demand on the buffer cache by tuning SQL to be more efficient.  Then see if Oracle still wants more space.
    HTH -- Mark D Powell --

  • Cannot increase partition size

    I originally had three two partitions one called BOOT and one called FILES. I ran out of room on my boot drive and I was told to clone it, add a partition with a larger size and clone it back to the larger parttion. I crteated BOOT 2 and then once cloned back I deleted BOOT.
    Now I cannot increase the size of FILES to its original size and cannot seem to recover any of the space from the original BOOT parttiion. Neither BOOT 2 or FILES can be increased. How do I acheive this?
    Here is a screen capture of what is going on.......

    You can not do that with Disk Utility. While it can be used to create and resize partitions, it can not be used to regain the space between partitions if there is data on the second partition.
    You might try something like > iPartition for Mac - Smart hard disk partitioning utility.
    But personally if I were in that boat. I would Clone the data from the 2nd and 3rd Partitions to partitions on an external drive. Then start over by reformatting the internal drive into 1 or 2 new partitions using Disk Utility and then clone the partitions back onto the internal drive.
    In addition: In OS X it is not necessary to have a boot partition and a file partition, OS X does quite well at managing everything including quite large user libraries in one partition.

  • Cannot increase MAXUSERTASKS

    Hi,
    I´ve tried to increase the MAXUSERTASK Parameter (from 350 to 500) using dbmgui.
    The DB cannot restart.
    knldiag.err:
    2008-02-06 09:03:28                          --- Starting GMT 2008-02-06 08:03:28           7.5.0    Build 034-121-118-234
    2008-02-06 09:03:28  3071 ERR 11282 IPC      create_shm: shmget error, Invalid argument
    2008-02-06 09:03:28  3071 ERR 11287 IPC      attach_shm: shmat error, Invalid argument id -1 flag 00 addr 0x0
    2008-02-06 09:03:28  3071 ERR 11299 IPC      stat_shm: id           -1
    2008-02-06 09:03:28  3071 ERR 11029 vmalloc  malloc error, Failed to allocate TRACE space. Please check the critical database parameters
    2008-02-06 09:03:28  3071 ERR 11029 vmalloc  malloc error, These are MAXUSERTASKS, MAXSERVERTASKS, CACHE_SIZE and TRACE_PAGES_...
    Where is the problem? Shared Memory from underlying linux?
    regards,
    Michael

    Sorry,
    I haven´t seen your remark on sysctl.conf.
    Look at my sysctl.conf:
    kernel.sem = 4096 512000 1600 2048
    This values are very old. I had found them in madb mailing list years ago.
    How do you size your values?
    What if this values are too great for the machine?
    regards,
    Michael

  • I cannot increase volume on Voice Memo

    Does anyone know how to increase volume on Voice Memo?
    I almost do not hear my messages (unless I shout or put my phone in front of my lips and talk loud).

    Just got a 3GS today and this volume problem was one of the first things I noticed. This has to be fixed - teling people they have to use a headset mic or somesuch, when the speakerphone usage of the built-in mic works just fine, is a cop-out. Obviously an oversight ("bug") in the code. Now if someone could just figure out what the file type of the voice memos is, one could take the files of 3rd party apps that do record at a proper volume and make iTunes recognize them as voice memos. If Apple's going to release something they consider a core iPhone app in this shoddy condition, it's only fair if we get some sort of functional workaround rather than wait for someone's bugfix inbox queue in Cupertino to get caught up on.

  • Cannot increase the stack size

    Hi,
    We have a program which gives a StackOverflowError. Trying the increase the stack size using command line options does not work. A simple program shows that the stack is the same size, whatever option we set.
    This is the program:
    class StackOverflowTest
    public static int counter = 0;
    public static void main(String[] a)
    try {
    sub();
    } catch (StackOverflowError e)
    System.out.println("recursive calls: "+counter);
    public static void sub()
    counter++;
    sub();
    We tried several -Xss (and -Xoss) settings: 600K, 2048K, 4M but got the same recursion deep: 16683 (with Eclipse), or 16689 (command line).
    We used Windows XP.
    Do you have any clue?
    Many thanks,
    Zsolt

    Oh good, they seem to have broken the forum formatting again.
    ====================================================================================================================
    Bug ID:     4362291     Stack size argument ignored (-Xss and -ss)
    ====================================================================================================================
    public class StackOverflowTest {
        public static int counter = 0;
        public static final void main(String[] a) {
            new Thread(new Runnable() {
                public void run() {
                    try {
                        sub();
                    } catch (StackOverflowError e) {
                        System.out.println("recursive calls: "+counter);
            }).start();
        public static final void sub() {
         counter++;
         sub();
    /code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Cannot increase file descriptors

    Hello all,
    I'm trying to increase the number of file descriptors of the system.
    Currently with ulimit -n, I get 2048. So I would like to increase the limit to 8192.
    I have added the following lines in the /etc/system file:
    set rlim_fd_max=8192
    set rlim_fd_cur=8192
    These are standard lines I have added in other systems and after rebooting I always get the right value. But in one of the machines of my server room this doesn't seem to work. The machine is exactly the same as all the others: SunFire V210, Solaris 10 with Patch Cluster 31/10/2007
    I have tried to reboot several times: init 6, reboot -- -r ... but I always get 2048 with ulimit -n
    Is there any other parameter somewhere than can limit this value?
    Thanx.

    Doing more tests... now I'm even more confused.
    Rebooting the system, I connected to the console and saw that during the boot part, there is a warning about the /etc/system file:
    Rebooting with command: boot
    Boot device: disk0 File and args:
    WARNING: unknown command 'nfs' on line 85 of etc/system
    WARNING: unknown command 'nfs' on line 86 of etc/system
    SunOS Release 5.10 Version Generic_118833-33 64-bit
    Copyright 1983-2006 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    Hardware watchdog enabled
    Those warnings refer to a problem of the /etc/system file that I had in the past (when I took over the system), but I modified the lines.
    They used to be just:
    nfs:nfs4_bsize=8192
    nfs:nfs4_nra=0
    Later I added the "set" in the front.
    Anyway, i changed the order of some commands and in lines 85 and 86 I have the following:
    85 * Begin MDD root info (do not edit)
    86 rootdev:/pseudo/md@0:0,30,blk
    The mirroring lines.
    So for some reason at boot, Solaris reads the old file. But I dont know which old file because it's been modified and I dont keep any backup of the original one. So, from where is Solaris reading that "strange" /etc/system file? It's definitely not the one I can see doing: cat /etc/system

  • Cannot increase Credit Limit - Get error message F4724

    Hi All,
    In FD32, I'm trying to increase the credit limit of a customer.  I get message Message no. F4724 that says "Maximum Individual limit should only be $$$$"  and it prints the $ amount of the current limit.  I try to increase the limit on other customers and I can with no error message.
    Have you ever seen this message and do you know what causes it to be displayed?  I searched notes and don't see anything, so I'm not sure where to look.
    Thanks in advance for your expertise!
    Karla

    Hi,
    Please check the central data. It has a section for Maximum permitted limits - Total amount and individual limit. Change the fields as need.
    Thanks,
    Leela

  • Cannot Increase CPU Multiplier - Help?

    Here's my problem:
    I've unlocked the CPU Multipliers on my AMD XP-1600+ by
    connecting the L1 bridges.  System boots & runs OK with
    stock (10.5 x 133) multiplier value (I'm running that right
    now).  I can also reduce the multiplier (10 x 133).
    When I try to increase it (11 x 133) the system won't
    POST; I have to power-off/on (then I get to re-enter ALL
    BIOS data). javascript:smilie('X(')
    Mad
    Can anyone give me a clue what's wrong?  Have I blown
    the unlocking; will my mobo just not support increased
    multipliers...??  I've had the system running stable @ 148
    Mhz FSB before unlocking it (and at least 140 Mhz after).
    Here is my H/W setup:
    KT7266-Pro (6380) Ver 1.0 mobo with Ver 1.9 BIOS
    Ver 4.43 4-in-1 Drivers, Ver 30.82 Detonator.

    Thanks for the reply wonkanoby - yes, I did;  first cleaned
    out the 'ash' then filled them with JB-Weld.
    This is the 2nd time I've tried unlocking.  The first time, the
    BIOS reported clock speed as 1200 Mhz no matter what I
    did.  Well, I hope the 3rd time does it - that's a bloody
    tedious job, even with a 5x 'hands-free' magnifier.
    BTW, what do you recommend for removing rear-window
    de-fogger paint?  I've been using acetone.

  • Cannot increase/zoom text in Mac Mail.

    I've tried everything that the manuals, support and user groups have suggested and nothing works.
    I know that it's something simple.
    Please help.

    Open System Preferences > Accessibility > Zoom
    Select:  Use keyboard shortcuts to zoom
    BTW... if you don't tell us exactly what you have tried that didn't work, we have no way of knowing.
    You might find something helpful in the Vision: Accessibility: Apple Support Communities
    forum.

  • Data Pump Export issue - no streams pool created and cannot automatically c

    I am trying to use data pump on a 10.2.0.1 database that has vlm enabled and getting the following error :
    Export: Release 10.2.0.1.0 - Production on Tuesday, 20 April, 2010 10:52:08
    Connected to: Oracle Database 10g Release 10.2.0.1.0 - Production
    ORA-31626: job does not exist
    ORA-31637: cannot create job SYS_EXPORT_TABLE_01 for user E_AGENT_SITE
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT_INT", line 600
    ORA-39080: failed to create queues "KUPC$C_1_20100420105208" and "KUPC$S_1_20100420105208" for Data Pump job
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPC$QUE_INT", line 1555
    ORA-00832: no streams pool created and cannot automatically create one
    This is my script (that I currently use on other non vlm databases successfully):
    expdp e_agent_site/<password>@orcl parfile=d:\DailySitePump.par
    this is my parameter file :
    DUMPFILE=site_pump%U.dmp
    PARALLEL=1
    LOGFILE=site_pump.log
    STATUS=300
    DIRECTORY=DATA_DUMP
    QUERY=wwv_document$:"where last_updated > sysdate-18"
    EXCLUDE=CONSTRAINT
    EXCLUDE=INDEX
    EXCLUDE=GRANT
    TABLES=wwv_document$
    FILESIZE=2000M
    My oracle directory is created and the user has rights
    googling the issue says that the shared pool is too small or streams_pool_size needs setting. shared_pool_size = 1200M and when I query v$parameter it shows that streams_pool_size = 0
    I've tried alter system set streams_pool_size=1M; but I just get :
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-04033: Insufficient memory to grow pool
    The server is a windows enterprise box with 16GB ram and VLM enabled, pfile memory parameters listed below:
    # resource
    processes = 1250
    job_queue_processes = 10
    open_cursors = 1000 # no overhead if set too high
    # sga
    shared_pool_size = 1200M
    large_pool_size = 150M
    java_pool_size = 50M
    # pga
    pga_aggregate_target = 850M # custom
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    # vlm support
    USE_INDIRECT_DATA_BUFFERS = TRUE
    DB_BLOCK_BUFFERS = 1500000
    Any ideas why I cannot run data pump? I am assuming that I just need to set streams_pool_size but I don't understand why I cannot increase the size of it on this db. It is set to 0 on other databases that work fine and I can set it which is why I am possibly linking the issue to vlm
    thanks
    Robert

    SGA_MAX_SIZE?
    SQL> ALTER SYSTEM SET streams_pool_size=32M SCOPE=BOTH;
    ALTER SYSTEM SET streams_pool_size=32M SCOPE=BOTH
    ERROR at line 1:
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-04033: Insufficient memory to grow pool
    SQL> show parameter sga_max
    NAME                         TYPE      VALUE
    sga_max_size                    big integer 480M
    SQL> show parameter cache
    NAME                         TYPE      VALUE
    db_16k_cache_size               big integer 0
    db_2k_cache_size               big integer 0
    db_32k_cache_size               big integer 0
    db_4k_cache_size               big integer 0
    db_8k_cache_size               big integer 0
    db_cache_advice                string      ON
    db_cache_size                    big integer 256M
    db_keep_cache_size               big integer 0
    db_recycle_cache_size               big integer 0
    object_cache_max_size_percent          integer      10
    object_cache_optimal_size          integer      102400
    session_cached_cursors               integer      20
    SQL> ALTER SYSTEM SET db_cache_size=224M SCOPE=both;
    System altered.
    SQL> ALTER SYSTEM SET streams_pool_size=32M SCOPE=both;
    System altered.Lukasz

  • Currency Decimal Increases Incoming Payment Window

    Hi Expert,
    My problem is related to Incoming Payment window (named  Doc. Currency ) can I increase the decimal(Last Digit 3,4) in that Field.Actually I check the Seting in Administration Module but Digit not increase.
    Please help me out from these problems.
    Regards
    Amol

    Hi Gordon,
    So i cannot increase the Decimal in Doc Currency field.Because the USD Currency amt For Eg :49.23321 so it round the decimal so amount calculate in Amount Due (LC) give differences in INR valuea and that field is Disabled.Otherwise i can input the value in that Amount Due (LC) Field.So suggest solution in these problem.
    Thanks &  Regards
    Amol

  • Slider is locked and cannot change dock size

    The slider is locked and I cannot increase the size of the icons on the dock. Please help.

    Have you restarted the iMac, if so and that did not fix the problem reset the SMC and PRAM. Instructions are in iMac SMC and PRAM reset

  • How to increase the length of the Info object

    Hi All
         Any one have idea about how to increse the length of the Info object Char(beyond 60). Can you please explain me in detail we are using BI7.0.
    Thanks
    Vani

    Hello Vani,
    You cannot increase the length of an info-object beyond 60 chars.However if you want to store a characteristics data with more than length 60, then you may create separate info-objects
    for example: if you need to store 'notes' which might have length more  than 60,
    then you may create info-objects like notes 1/3 ---store first 60 chars.
    notes 2/3 --- store next 60 characters and so on.
    Thanx
    Priyanka

  • Resizing resize db_cache_size parameter

    Hi
    i'm facing problem of IO and taking statspack report and analyzing it from statspackanalyzer they are advising me to increase db_cache_size to avoid many full table scans. could you help me on how to check an appropriate value of my db_cache_size as my configuration is below:
    OS RHEL 4
    RAM: 4 Gb
    CPU: 8 X Intel(R) Xeon(TM) CPU 3.20GHz
    Oracle dabatsae server 9.2.0.4
    My actual SGA is
    SQL> sho sga
    Total System Global Area 957945792 bytes
    Fixed Size 452544 bytes
    Variable Size 150994944 bytes
    Database Buffers 805306368 bytes
    Redo Buffers 1191936 bytes
    db_cache_size = 805306368
    shared_pool_size = 50331648
    log_buffer = 1048576
    And the v$db_cache_size_advice show me the below output.
    80 10010 1.3576 1442537193
    160 20020 1.3063 1387963597
    240 30030 1.2798 1359825236
    320 40040 1.2475 1325527521
    400 50050 1.2078 1283381091
    480 60060 1.164 1236834685
    560 70070 1.115 1184781753
    640 80080 1.0636 1130102023
    720 90090 1.0224 1086346464
    768 96096 1 1062540512 (Current)
    800 100100 .9814 1042794822
    880 110110 .9547 1014390821
    960 120120 .9343 992724772
    1,040 130130 .8642 918284631
    1,120 140140 .7784 827123440
    1,200 150150 .767 814920392
    1,280 160160 .7597 807265044
    1,360 170170 .7539 801045972
    1,440 180180 .7493 796205111
    1,520 190190 .7456 792210522
    1,600 200200 .7414 787812228
    Thanks for your help.

    Background Wait Events for DB: GABON Instance: gabon Snaps: 12 -13
    -> ordered by wait time desc, waits desc (idle events last)
    Avg
    Total Wait wait Waits
    Event Waits Timeouts Time (s) (ms) /txn
    control file parallel write 1,155 0 434 375 0.5
    db file scattered read 222 0 47 212 0.1
    control file sequential read 773 0 25 33 0.4
    db file sequential read 77 0 3 40 0.0
    log file parallel write 3,246 2,812 0 0 1.5
    db file parallel write 3,104 0 0 0 1.4
    rdbms ipc reply 2 0 0 21 0.0
    db file single write 4 0 0 11 0.0
    log buffer space 6 0 0 4 0.0
    log file single write 2 0 0 6 0.0
    log file sequential read 2 0 0 4 0.0
    direct path read 1,692 0 0 0 0.8
    direct path write 440 0 0 0 0.2
    latch free 6 1 0 0 0.0
    LGWR wait for redo copy 38 0 0 0 0.0
    rdbms ipc message 16,736 5,965 19,462 1163 7.6
    pmon timer 1,432 1,432 3,562 2488 0.6
    smon timer 12 11 3,330 ###### 0.0
    SQL ordered by Gets for DB: GABON Instance: gabon Snaps: 12 -13
    -> End Buffer Gets Threshold: 10000
    -> Note that resources reported for PL/SQL includes the resources used by
    all SQL statements called within the PL/SQL code. As individual SQL
    statements are also reported, it is possible and valid for the summed
    total % to exceed 100
    CPU Elapsd
    Buffer Gets Executions Gets per Exec %Total Time (s) Time (s) Hash Value
    16,712,841 1 16,712,841.0 37.0 771.56 2430.22 2643858346
    Module: sqlservr.exe
    SELECT max(startdate) maxstartdate FROM in_cdr
    1,628,702 1 1,628,702.0 3.6 308.91 429.15 3952595216
    Module: TOAD 8.6.0.38
    select trunc(startdate) reportdate, count(*) calls, sum(duration
    ) actualsecs, sum(cost) revenue, sum(balancebefore-balanceafter)
    calculated_revenue from in_cdr partition(incdr_2010_0401) grou
    p by trunc(startdate) union select trunc(startdate) reportdate,
    count(*) calls, sum(duration) actualsecs, sum(cost) revenue, sum
    1,529,024 1 1,529,024.0 3.4 93.13 567.55 1639719688
    Module: sqlservr.exe
    SELECT max(startdate) maxstartdate FROM voucher_cdr
    952,565 303 3,143.8 2.1 31.82 264.22 485362562
    Module: sqlldr@cdranalysis (TNS V1-V3)
    INSERT INTO IN_CDR (ANUMBER,BNUMBER,STARTDATE,TIMEZONE,DURATIO
    N,CURRENCYTYPE,COST,DEDICATEDACCUSED,BALANCEAFTER,TRAFFICCASE,TE
    LESERVICECODE,LOCATION,DATAVOLUME,NUMBEROFEVENTS,FAFINDICATOR,NE
    TWORKID,SERVICEPROVIDERID,SERVICECLASS,ACCOUNTGROUPID,SERVICEOFF
    ERINGS,SELECTEDCOMMUNITYID,BALANCEBEFORE,BALANCEDEDICATEDAFTER,B
    773,681 3 257,893.7 1.7 30.16 477.10 1041979289
    Module: SQL*Plus
    begin processairdata; end;
    679,361 1 679,361.0 1.5 80.05 124.50 4241315052
    Module: sqlservr.exe
    Select * from SYSADM.subscriberdump where trunc(startdate)= t
    runc(sysdate)-1
    612,387 1 612,387.0 1.4 36.62 91.01 3058615587
    Module: sqlservr.exe
    select startdate,ServiceclassID,subscriberidmsisdn from Subscrib
    erDump where startdate = to_date('2010-06-07','YYYY-MM-DD') and
    subscriberimsi is not null and accountactivatedflag=1
    292,140 32,640 9.0 0.6 11.84 419.64 1609964435
    Module: SQL*Plus
    INSERT INTO ADJUSTMENT_CDR ( NOMINALAMOUNT, MSISDN, S
    ERVICECLASSID, ORIGINNODEID, ORIGINOPERATORID, DESCRIPTION
    , DESCRIPTION2, AMOUNTDA1, AMOUNTDA2, AMOUNTDA3, AMOUNT
    DA4, AMOUNTDA5, startdate, sequencenumber, FILEID )
    VALUES ( :b15 , :b14 , :b13 , :b12 , :b11 , :b10 ,
    194,749 3 64,916.3 0.4 5.11 5.42 2839087957
    Module: SQL*Plus
    SELECT ACDR.transactionamount , ACDR.accountnumber ,
    SQL ordered by Gets for DB: GABON Instance: gabon Snaps: 12 -13
    -> End Buffer Gets Threshold: 10000
    -> Note that resources reported for PL/SQL includes the resources used by
    all SQL statements called within the PL/SQL code. As individual SQL
    statements are also reported, it is possible and valid for the summed
    total % to exceed 100
    CPU Elapsd
    Buffer Gets Executions Gets per Exec %Total Time (s) Time (s) Hash Value
    ACDR.serviceclasscurrent , ACDR.originhostname ,
    ACDR.originoperatorid , ACDR.externaldata1, ACDR.ex
    ternaldata2, ACDR.origintimestamp , ACDR.localsequ
    encenumber, ACDR.ADJUSTMENTAMOUNTDEDICATED1, ACDR.
    184,394 34,508 5.3 0.4 5.96 5.96 2453141568
    Module: SQL*Plus
    DELETE from AIR_CDR where ROWID = :b1
    141,583 39 3,630.3 0.3 3.03 3.93 169629744
    Module: sqlldr@cdranalysis (TNS V1-V3)
    INSERT INTO AIR_CDR (ORIGINNODETYPE,ORIGINHOSTNAME,ORIGINFILEI
    D,ORIGINTRANSACTIONID,ORIGINOPERATORID,ORIGINTIMESTAMP,HOSTNAME,
    LOCALSEQUENCENUMBER,TIMESTAMP,SERVICECLASSCURRENT,TRANSACTIONTYP
    E,TRANSACTIONCODE,TRANSACTIONAMOUNT,TRANSACTIONAMOUNTDEDICATED1,
    TRANSACTIONAMOUNTDEDICATED2,TRANSACTIONAMOUNTDEDICATED3,TRANSACT
    111,639 1 111,639.0 0.2 4.89 121.06 1973241403
    Module: SQL*Plus
    select * from msi_space
    84,898 3 28,299.3 0.2 2.47 2.57 1562134355
    Module: SQL*Plus
    SELECT ACDR.subscribernumber , ACDR.origintimestamp ,
    ACDR.VOUCHERSERIALNUMBER , ACDR.transactionamount,
    ACDR.RECHARGEAMOUNTMARKET, ACDR.VOUCHERGROUP, ACDR
    .localsequencenumber, ACDR.FILEID from AIR_CDR ACDR where
    ACDR.INSERTED = 'N' and ACDR.originnodetype IN ( 'IVR', 'UGW'
    63,675 8,205 7.8 0.1 2.49 2.19 4143084494
    select privilege#,level from sysauth$ connect by grantee#=prior
    privilege# and privilege#>0 start with grantee#=:1 and privilege
    #>0
    50,394 1 50,394.0 0.1 3.07 9.26 4130194716
    Module: sqlservr.exe
    select trunc(startdate)Days,serviceclass,datavolume,nano,bnumber
    ,cost from in_cdr partition (incdr_2010_0607) where teleservicec
    ode in ('5','6')
    40,714 1 40,714.0 0.1 1.40 5.42 5349178
    Module: SQL*Plus
    update infiles set records_loaded = 1072 where filename = '09101
    6-0234-Ccn1CDRFile-100607-1951-503848-7395-08062010130806-MINSAT
    .txt20100608'
    40,714 1 40,714.0 0.1 1.55 2.94 203676107
    Module: SQL*Plus
    update infiles set records_loaded = 984 where filename = '091016
    -0234-Ccn1CDRFile-100607-1917-503784-7274-08062010123948-MINSAT.

Maybe you are looking for