Tablespace resize Error

Hi all
when i am trying to increase my undo tablespace Size
i go the Following Error?
i am doing this operation from Toad.
Having Enough Size on Disk,
this is the Problem on Production Database Server,
using Oracle 10g Rel 1002000100 on HP-Unix
SQL> ALTER DATABASE DATAFILE '/app/oracle/product/oradata/prod/undotbs02.dbf'
RESIZE 20480M
ALTER DATABASE DATAFILE '/app/oracle/product/oradata/prod/undotbs02.dbf'
RESIZE 20480M
Error at line 2
ORA-01237: cannot extend datafile 12
ORA-01110: data file 12: '/app/oracle/product/oradata/prod/undotbs02.dbf'
ORA-19502: write error on file "/app/oracle/product/oradata/prod/undotbs02.dbf", blockno 2534784 (blocksize=8192)
ORA-27072: File I/O error
Additional information: 4
Additional information: 2534784
Additional information: 655360
is this Serious Problem?
is the Error Related to os or Database
please Help me out
Many thanks

yeah,
they manged Some Space by Deleteing Few Spaces
Can We create the tablespaces in other Mount points
like in /backup where good space is remained
i wanted to create the Undo table space in /backup
and Space issue came coz the Undo is reaching highly,so far my Undo reached 19GB,
even after the Immediate Shutdown & Startup the Size is not Relased in Undo,
it is Remain 19GB,
many thanks for ur Kind information
oracle@prod: /app/oracle # df -k
/app (/dev/vg01/lvapp ) : 62309972 total allocated K
7816220 free allocated Kb
54493752 used allocated Kb
87 % allocation used
/backup (/dev/vgbackup/lvbackup) : 8748714 total allocated K
5296424 free allocated Kb
3452290 used allocated Kb
39 % allocation used
/home (/dev/vg00/lvol5 ) : 24576 total allocated K
16576 free allocated Kb
8000 used allocated Kb
32 % allocation used
/opt (/dev/vg00/lvol6 ) : 1717640 total allocated K
344208 free allocated Kb
1373432 used allocated Kb
79 % allocation used
/tmp (/dev/vg00/lvol4 ) : 814256 total allocated K
730424 free allocated Kb
83832 used allocated Kb
10 % allocation used
/usr (/dev/vg00/lvol7 ) : 2906912 total allocated K
1200720 free allocated Kb
1706192 used allocated Kb
58 % allocation used
/var (/dev/vg00/lvol8 ) : 4681752 total allocated K
3655096 free allocated Kb
1026656 used allocated Kb
21 % allocation used
/stand (/dev/vg00/lvol1 ) : 269032 total allocated K
189472 free allocated Kb
79560 used allocated Kb
29 % allocation used
/ (/dev/vg00/lvol3 ) : 204560 total allocated K
43824 free allocated Kb
160736 used allocated Kb
78 % allocation used
oracle@prod: /app/oracle #
thanks alot

Similar Messages

  • Undo tablespace resize error

    Total space occupied by UNDO tablespace is : 3G and used space for UNDO tablespace is only 512M , so approx 2.5G space is free. But when i tried to resize the undo tablespace to 1G then its showing the below error :
    ORA-03297: file contains used data beyond requested RESIZE value
    but the used data size is 512M only.
    Kindly help me to resize the undo tablespace to 1G.
    Database : Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bi
    Kindly suggest.
    Advance thanks !!

    you can't resize undo tablespace. If you are trying to reduce the size.
    then add a unod tablespace may like undotbs2 then set undotbs2 as default to your database. then drop the prvious undo tablespace
    Anil Malkai

  • I'm having trouble uploading pics from my IMac to photbucket. I'm getting a "resize" error/ IMP error message. Any thoughts?

    I have an I-Mac running OSX 10.9.2. When I try to export (upload) pics from I-Photo to Photobucket I'm getting a failed messafge that reads "Upload failed. Resize error. IMP error We were unable to upload your image"  Any thoughts on a possible solution? My enable java script is checked in the security window on Safari. 

    This a help page from Photobucket with an email link to Photobucket support if the suggestions do not help.
    http://support.photobucket.com/hc/en-us/articles/200723794-Troubleshooting-Uploa d-Problems

  • Create catalog tablespace rcvcat error!

    i create tablespace rcvcat in the database rcv. then create a user rman (default database is rcvcat),grant resource ,connect,recover_catalog_owner to rman. After this i user rman in the prompt dos
    c:>rman catalog rman/rman@rcv
    rman-06008 connect to recover catalog database
    rman-06428 cannot install catalog
    the i use the command 'create catalog tablespace rcvcat'
    rman> create catalog tablespace rcvcat
    error encoutered while parsing input commands
    but when i use the comman 'create catalog tablespace system' it is ok!
    why?
    the tablespace rcvcat is online too!
    who can help me ,the version of oracle is
    8.1.5

    hai,
    While creating database, tablespace, user, etc, do not use the oralce key words as identifiers. User name is "rman"(key word)
    tablespace is "rcvcat"(key word).
    so replace these names with other words, then try..
    murty
    null

  • Tablespace resize

    Using a Bigfile tablespace (maxsize 250G) in Oracle 10g on Solaris.
    In bigfile tablespace I cannot add a second datafile like normal tablespace.
    Want to know when the tablespace reaches the maxsize 250G, what options do I have?
    Can I increase the maxsize ?
    If I re-size the datafile will it tamper the data in any way?
    Sid
    Edited by: [email protected] on Sep 4, 2010 7:59 PM

    [email protected] wrote:
    Hi Teymur,
    You mean to say that I have only the option to resize everytime the tablespace reaches the upper boundary.
    Its a index tablespace, does resizing tamper in any way the index structure or data ?
    Why isn't the maxsize pushed up when I resize the datafile ?Pls, see:
    SQL> create bigfile tablespace big_ts datafile '/oradata/db1/big_ts_1.dbf' size 10 m autoextend on next 1m maxsize 20m;
    Tablespace created.
    SQL> create table big_ts_obj tablespace big_ts as select * from dba_objects;
    Table created.
    SQL> insert into big_ts_obj select * from big_ts_obj;
    69489 rows created.
    SQL> /
    insert into big_ts_obj select * from big_ts_obj
    ERROR at line 1:
    ORA-01653: unable to extend table SYS.BIG_TS_OBJ by 128 in tablespace BIG_TS
    SQL> alter database datafile '/oradata/db1/big_ts_1.dbf' autoextend on next 1m maxsize unlimited
      2  /
    Database altered.
    SQL> insert into big_ts_obj select * from big_ts_obj;
    138978 rows created.
    SQL> /
    277956 rows created.
    SQL> If you do not want to change MAXSIE everytime, then set it to UNLIMITED.
    There is no any relationship between size of datafiles (or resizing datafiles) and INDEX structure.

  • SYSAUX tablespace resize/shrink

    Hi All,
    I'm using 11g SE on Linux, and SYSAUX tablespace has grown too large (32Gb). I've reclaimed a space and the question is Is there any chance to resize this tablespace back to small size (let's say to 5Gb)?
    I'll appreciate any help.
    Thank you.

    Hi,
    Here it is an output. I've removed some stuff to fit the message limit.
    ~~~~~~~~~~~~~~~
    AWR INFO Report
    ~~~~~~~~~~~~~~~
    Report generated at 10:36:09 on May 29, 2013 ( Wednesday ) in Timezone +01:00                                
    Warning: Non Default AWR Setting!                                                                            
    Snapshot interval is 60 minutes and Retention is 8 days                                                      
           DB_ID DB_NAME   HOST_PLATFORM                             INST STARTUP_TIME      LAST_ASH_SID PAR     
    * 182010396  PROD      db01p2.db.mydomain.com - Linux x86 6     2 14:54:16 (03/26)             0 YES     
                           4-bit                                                                                 
    (I) AWR Snapshots Information
    (1a) SYSAUX usage - Schema breakdown (dba_segments)
    |                                                                                                            
    | Total SYSAUX size                      1,790.6 MB ( 5% of 32,768.0 MB MAX with AUTOEXTEND ON )             
    |                                                                                                            
    | Schema  SYS          occupies          1,245.0 MB (  69.5% )                                               
    | Schema  XDB          occupies            157.6 MB (   8.8% )                                               
    | Schema  PERFSTAT     occupies            151.8 MB (   8.5% )                                               
    | Schema  APEX_030200  occupies             77.4 MB (   4.3% )                                               
    | Schema  MDSYS        occupies             65.8 MB (   3.7% )                                               
    | Schema  SYSMAN       occupies             45.3 MB (   2.5% )                                               
    | Schema  SYSTEM       occupies             13.7 MB (   0.8% )                                               
    | Schema  ORDDATA      occupies             13.6 MB (   0.8% )                                               
    | Schema  OLAPSYS      occupies              5.1 MB (   0.3% )                                               
    | Schema  DBSNMP       occupies              4.1 MB (   0.2% )                                               
    | Schema  EXFSYS       occupies              3.6 MB (   0.2% )                                               
    | Schema  CTXSYS       occupies              3.6 MB (   0.2% )                                               
    | Schema  WMSYS        occupies              3.5 MB (   0.2% )                                               
    | Schema  ORDSYS       occupies              0.4 MB (   0.0% )                                               
    |                                                                                                            
    (1b) SYSAUX occupants space usage (v$sysaux_occupants)                                                       
    |                                                                                                            
    | Occupant Name        Schema Name               Space Usage                                                 
    | -------------------- -------------------- ----------------                                                 
    | SM/AWR               SYS                          888.0 MB                                                 
    | SM/OPTSTAT           SYS                          266.6 MB                                                 
    | XDB                  XDB                          157.6 MB                                                 
    | STATSPACK            PERFSTAT                     151.8 MB                                                 
    | SDO                  MDSYS                         65.8 MB                                                 
    | EM                   SYSMAN                        45.3 MB                                                 
    | AO                   SYS                           36.3 MB                                                 
    | XSOQHIST             SYS                           36.3 MB                                                 
    | ORDIM/ORDDATA        ORDDATA                       13.6 MB                                                 
    | LOGMNR               SYSTEM                        12.3 MB                                                 
    | SM/ADVISOR           SYS                           11.3 MB                                                 
    | JOB_SCHEDULER        SYS                            9.9 MB                                                 
    | SM/OTHER             SYS                            7.1 MB                                                 
    | XSAMD                OLAPSYS                        5.1 MB                                                 
    | EM_MONITORING_USER   DBSNMP                         4.1 MB                                                 
    | EXPRESSION_FILTER    EXFSYS                         3.6 MB                                                 
    | TEXT                 CTXSYS                         3.6 MB                                                 
    | WM                   WMSYS                          3.5 MB                                                 
    | SMON_SCN_TIME        SYS                            3.3 MB                                                 
    | SQL_MANAGEMENT_BASE  SYS                            1.7 MB                                                 
    | PL/SCOPE             SYS                            1.6 MB                                                 
    | LOGSTDBY             SYSTEM                         1.4 MB                                                 
    | STREAMS              SYS                            1.0 MB                                                 
    | ORDIM                ORDSYS                         0.4 MB                                                 
    | AUTO_TASK            SYS                            0.3 MB                                                 
    | AUDIT_TABLES         SYS                            0.0 MB                                                 
    | ORDIM/ORDPLUGINS     ORDPLUGINS                     0.0 MB                                                 
    | ORDIM/SI_INFORMTN_SC SI_INFORMTN_SCHEMA             0.0 MB                                                 
    | TSM                  TSMSYS                         0.0 MB                                                 
    | ULTRASEARCH          WKSYS                          0.0 MB                                                 
    | ULTRASEARCH_DEMO_USE WK_TEST                        0.0 MB                                                 
    |                                                                                                            
    | Others (Unaccounted space)                         59.4 MB                                                 
    |                                                                                                            
    (1c) SYSAUX usage - Unregistered Schemas
    | This section displays schemas that are not registered                                                      
    | in V$SYSAUX_OCCUPANTS                                                                                      
    |                                                                                                            
    | Schema  APEX_030200  occupies             77.4 MB                                                          
    |                                                                                                            
    | Total space                               77.4 MB                                                          
    |                                                                                                            
    (1d) SYSAUX usage - Unaccounted space in registered schemas
    |
    | This section displays unaccounted space in the registered
    | schemas of V$SYSAUX_OCCUPANTS.
    |                                                                                                            
    | Unaccounted space in SYS/SYSTEM          -18.1 MB                                                          
    |                                                                                                            
    | Total space                              -18.1 MB                                                          
    |                                                                                                            
    (2) Size estimates for AWR snapshots                                                                         
    |                                                                                                            
    | Estimates based on 60 mins snapshot INTERVAL:                                                              
    |    AWR size/day                           53.0 MB (2,262 K/snap * 24 snaps/day)                            
    |    AWR size/wk                           371.1 MB (size_per_day * 7) per instance                          
    |    AWR size/wk                         1,484.4 MB (size_per_day * 7) per database                          
    |                                                                                                            
    | Estimates based on 12 snaps in past 24 hours:                                                              
    |    AWR size/day                           26.5 MB (2,262 K/snap and 12 snaps in past 24 hours)             
    |    AWR size/wk                           185.6 MB (size_per_day * 7) per instance                          
    |    AWR size/wk                           742.2 MB (size_per_day * 7) per database                          
    |                                                                                                            
    (3a) Space usage by AWR components (per database)
    COMPONENT        MB  % AWR  KB_PER_SNAP MB_PER_DAY MB_PER_WEEK TABLE% : INDEX%                               
    FIXED         860.8   96.9        2,193       25.7       179.9    55% : 45%                                  
    SPACE          18.1    2.0           46        0.5         3.8    59% : 41%                                  
    EVENTS          3.5    0.4            9        0.1         0.7    50% : 50%                                  
    SQL             2.9    0.3            7        0.1         0.6    37% : 63%                                  
    ASH             1.5    0.2            4        0.0         0.3    50% : 50%                                  
    RAC             0.6    0.1            2        0.0         0.1    50% : 50%                                  
    SQLTEXT         0.1    0.0            0        0.0         0.0    50% : 50%                                  
    SQLPLAN         0.1    0.0            0        0.0         0.0    50% : 50%                                  
    SQLBIND         0.1    0.0            0        0.0         0.0    50% : 50%                                  
    (3b) Space usage within AWR Components (> 500K)
    COMPONENT        MB SEGMENT_NAME - % SPACE_USED                                           SEGMENT_TYPE       
    FIXED         336.0 WRH$_SYSMETRIC_HISTORY                                        -  12%  TABLE              
    FIXED         296.0 WRH$_SYSMETRIC_HISTORY_INDEX                                  -  18%  INDEX              
    FIXED          88.0 WRH$_SYSMETRIC_SUMMARY                                        -  10%  TABLE              
    FIXED          42.0 WRH$_SYSMETRIC_SUMMARY_INDEX                                  -  18%  INDEX              
    FIXED          24.0 WRH$_WAITCLASSMETRIC_HISTORY                                  -  21%  TABLE              
    FIXED          21.0 WRH$_WAITCLASSMETRIC_HIST_IND                                 -  17%  INDEX              
    FIXED          16.0 WRM$_SNAPSHOT_DETAILS_INDEX                                   -  80%  INDEX              
    FIXED          10.0 WRM$_SNAPSHOT_DETAILS                                         -  92%  TABLE              
    SPACE           0.9 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12506                     -  82%  TABLE PARTITION    
    SPACE           0.9 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12530                     -  84%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12458                     -  89%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12650                     -  88%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12626                     -  87%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12602                     -  86%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12578                     -  87%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12482                     -  89%  TABLE PARTITION    
    SPACE           0.8 WRH$_SEG_STAT.WRH$_SEG_ST_182010396_12554                     -  89%  TABLE PARTITION    
    SPACE           0.7 WRH$_SEG_STAT_OBJ                                             -  46%  TABLE              
    SPACE           0.6 WRH$_SEG_STAT_OBJ_INDEX                                       -  22%  INDEX              
    SPACE           0.6 WRH$_SEG_STAT_OBJ_PK                                          -  26%  INDEX              
    SPACE           0.5 WRH$_SEG_STAT_PK.WRH$_SEG_ST_182010396_12554                  -  63%  INDEX PARTITION    
    SPACE           0.5 WRH$_SEG_STAT_PK.WRH$_SEG_ST_182010396_12626                  -  51%  INDEX PARTITION    
    (4) Space usage by non-AWR components (> 500K)
    COMPONENT        MB SEGMENT_NAME                                                          SEGMENT_TYPE       
    NON_AWR       104.0 SYS.I_WRI$_OPTSTAT_H_OBJ#_ICOL#_ST                                    INDEX              
    NON_AWR        80.0 SYS.WRI$_OPTSTAT_HISTGRM_HISTORY                                      TABLE              
    NON_AWR        53.2 XDB.SYS_LOB0000057465C00025$$                                         LOBSEGMENT         
    NON_AWR        50.0 SYS.I_WRI$_OPTSTAT_H_ST                                               INDEX              
    NON_AWR        18.0 MDSYS.SYS_LOB0000064008C00006$$                                       LOBSEGMENT         
    NON_AWR        16.1 SYS.SYS_LOB0000065858C00004$$                                         LOBSEGMENT         
    NON_AWR        13.0 SYS.WRI$_OPTSTAT_HISTHEAD_HISTORY                                     TABLE              
    NON_AWR         9.0 SYS.I_WRI$_OPTSTAT_HH_OBJ_ICOL_ST                                     INDEX              
    NON_AWR         8.0 XDB.XDB$RESOURCE                                                      TABLE              
    NON_AWR         7.2 SYS.SYS_LOB0000065843C00004$$                                         LOBSEGMENT         
    NON_AWR         7.0 MDSYS.SDO_CS_SRS                                                      TABLE              
    NON_AWR         5.0 SYS.SCHEDULER$_EVENT_LOG                                              TABLE              
    NON_AWR         5.0 APEX_030200.WWV_FLOW_DICTIONARY$CAPED                                 INDEX              
    NON_AWR         5.0 PERFSTAT.STATS$SQL_PLAN                                               TABLE              
    NON_AWR         5.0 PERFSTAT.STATS$SQL_PLAN_USAGE                                         TABLE              
    NON_AWR         5.0 PERFSTAT.STATS$SQLTEXT                                                TABLE              
    NON_AWR         5.0 APEX_030200.WWV_FLOW_PAGE_PLUGS                                       TABLE              
    NON_AWR         5.0 APEX_030200.WWV_FLOW_STEP_ITEMS                                       TABLE              
    NON_AWR         4.2 SYS.SYS_LOB0000065848C00004$$                                         LOBSEGMENT         
    NON_AWR         4.0 APEX_030200.WWV_FLOW_DICTIONARY$                                      TABLE              
    NON_AWR         4.0 SYSTEM.SYS_LOB0000001147C00009$$                                      LOBSEGMENT         
    NON_AWR         4.0 SYS.SCHEDULER$_INSTANCE_PK                                            INDEX              
    NON_AWR         4.0 SYS.I_WRI$_OPTSTAT_HH_ST                                              INDEX              
    NON_AWR         3.2 SYS.SYS_LOB0000065838C00004$$                                         LOBSEGMENT         
    NON_AWR         3.0 XDB.XDB$H_INDEX                                                       TABLE              
    (5a) AWR snapshots - last 50
    Total snapshots in DB 182010396 Instance 3 = 201                                                             
    Total snapshots in DB 182010396 Instance 2 = 201                                                             
          DBID    SNAP_ID  INST FLUSH_ELAPSED        ENDTM             STARTUP_TIME      STATUS ERRCNT           
    182010396      12678     2 +00000 00:00:00.1    08:00:41 (05/29)  14:54:16 (03/26)       0      0           
    182010396      12678     3 +00000 00:00:00.5    08:00:41 (05/29)  14:56:33 (03/26)       0      0           
    182010396      12679     2 +00000 00:00:00.1    09:00:59 (05/29)  14:54:16 (03/26)       0      0           
    182010396      12679     3 +00000 00:00:00.1    09:00:59 (05/29)  14:56:33 (03/26)       0      0           
    182010396      12680     2 +00000 00:00:00.9    10:00:10 (05/29)  14:54:16 (03/26)       0      0           
    182010396      12680     3 +00000 00:00:00.1    10:00:10 (05/29)  14:56:33 (03/26)       0      0           
    (5b) AWR snapshots with errors or invalid
    no rows selected
    (5c) AWR snapshots -- OLDEST Non-Baselined snapshots
          DBID  INST    SNAP_ID ENDTM             STATUS ERROR_COUNT                                             
    182010396     2      12480 02:00:25 (05/21)       0           0                                             
    (6) AWR Control Settings - interval, retention
           DBID  LSNAPID LSPLITID LSNAPTIME      LPURGETIME      FLAG INTERVAL          RETENTION         VRSN   
      182010396    12680    12671 05/29 10:00:11 05/29 01:13:59     2 +00000 01:00:00.0 +00008 00:00:00.0    5   
    (7a) AWR Contents - row counts for each snapshots
       SNAP_ID  INST        ASH        SQL      SQBND      FILES      SEGST     SYSEVT                           
         12656     2          0          0          0          0        104          0                           
         12679     2          0          0          0          0        107          0                           
       SNAP_ID  INST        ASH        SQL      SQBND      FILES      SEGST     SYSEVT                           
         12679     3          0          0          0          0        113          0                           
         12680     2          0          0          0          0        110          0                           
         12680     3          0          0          0          0        109          0                           
    (7b) AWR Contents - average row counts per snapshot
    SNAP_COUNT  INST        ASH    SQLSTAT    SQLBIND      FILES    SEGSTAT   SYSEVENT                           
           201     3          0          0          0          0     108.27          0                           
           201     2          0          0          0          0     109.23          0                           
    (7c) AWR total item counts - names, text, plans
       SQLTEXT    SQLPLAN   SQLBMETA     SEGOBJ   DATAFILE   TEMPFILE                                            
             0          0          0       2784          0          0                                            
    (II) Advisor Framework Info
    (1) Advisor Tasks - Last 50
    OWNER/ADVISOR  TASK_ID/NAME                     CREATED          EXE_DURATN EXE_CREATN HOW_C STATUS          
    SYS/SQL Tuning 1/SYS_AUTO_SQL_TUNING_TASK       09:52:13 (09/17)                       AUTO  INITIAL         
    SYS/Segment Ad 10161/SYS_AUTO_SPCADV_5215001005 00:15:52 (05/10)      2,925      2,925 CMD   COMPLETED       
                   2013                                                                                          
    SYS/Segment Ad 10162/SYS_AUTO_SPCADV_3804011005 01:04:38 (05/10)         50         50 CMD   COMPLETED       
    (2) Advisor Task - Oldest 5
    OWNER/ADVISOR  TASK_ID/NAME                     CREATED          EXE_DURATN EXE_CREATN HOW_C STATUS          
    SYS/Segment Ad 9980/SYS_AUTO_SPCADV_04002329042 23:00:04 (04/29)        426        427 CMD   COMPLETED       
                   013                                                                                           
    SYS/Segment Ad 9990/SYS_AUTO_SPCADV_16002330042 23:00:16 (04/30)      5,519      5,519 CMD   COMPLETED       
                   013                                                                                           
    SYS/Segment Ad 9991/SYS_AUTO_SPCADV_16320001052 00:32:17 (05/01)      2,831      2,831 CMD   COMPLETED       
                   013                                                                                           
    SYS/Segment Ad 9992/SYS_AUTO_SPCADV_29190101052 01:19:29 (05/01)         80         80 CMD   COMPLETED       
                   013                                                                                           
    SYS/Segment Ad 10000/SYS_AUTO_SPCADV_1300230105 23:00:13 (05/01)        445        445 CMD   COMPLETED       
                   2013                                                                                          
    (3) Advisor Tasks With Errors - Last 50
    OWNER/ADVISOR  TASK_ID/NAME                     CREATED          EXE_DURATN EXE_CREATN HOW_C STATUS          
    TASK_DESC                                                                                                    
    ERROR_MSG                                                                                                    
    SYS/SQL Tuning 1/SYS_AUTO_SQL_TUNING_TASK       09:52:13 (09/17)                       AUTO  INITIAL         
    Description: Automatic SQL Tuning Task                                                                       
    Error Msg  :                                                                                                 
    (III) ASH Usage Info
    (1a) ASH histogram (past 3 days)
    (1b) ASH histogram (past 1 day)
    (2a) ASH details (past 3 days)
    (2b) ASH details (past 1 day)
    (2c) ASH sessions (Fg Vs Bg) (past 1 day across all instances in RAC)
    Foreground %                                                                                                 
    Background %                                                                                                 
    MMNL %                                                                                                       
    End of Report

  • Tablespace resizing taking too much time

    This is my database setup:
    3 node rac on 32 bit linux (rh 4)
    2 SANs (3gb + 2 gb)
    current datafiles: 3.2T out of 5.0T (autoextend on)
    before adding the second SAN, the resizing tablespace isn't bad (13s/gb)
    now it is taking way too long:
    this is how I do to resize the tablespace manually to test how long it takes:
    alter tablespace my_tbs resize 3173562M; //from 3172538M (adding another 1gb)
    And it took 33 minutes to complete.
    Could someone tell me what is wrong? is it because the new SAN i put in or it is because now the tablespace is too big?
    ps:: when i check the instance performing, the "SMON" user is like 97% of db activities
    Thanks,
    Chau
    Message was edited by:
    user626162
    Message was edited by:
    user626162

    when you set the tablespace to (autoextend on), what exactly oracle does in the background when it needs to extend the tablespace? does it do the "alter tablespace tbs_name resize"?
    Thanks,
    Chau

  • Temporary tablespace resizing in physical standby

    Hi all,
    We have a oracle 9.2.0.6 on Sun soalris.IN Our standby db we are facing one problem is related to temporary tablespaces.
    ORA-1652: unable to extend temp segment by 128 in tablespace TEMPso how to resize the datafile we are already having a two dafiles realted to temp tablespaces
    Edited by: user00726 on Jun 2, 2009 10:25 PM

    Hi Kamran and Anand,
    Both the command s are working
    ALTER DATABASE ADD TEMPFILE 'tempfile_name.dbf' SIZE 5GByesterday only i have added one of the datafile on the same standby database
    Wed Jun  3 01:33:53 2009
    ORA-1652: unable to extend temp segment by 128 in tablespace                 TEM
    P
    Wed Jun  3 01:33:54 2009
    ORA-1652: unable to extend temp segment by 128 in tablespace                 TEM
    P
    Wed Jun  3 11:23:15 2009
    ALTER DATABASE TEMPFILE '/bkp/oradata1/temp02.dbf' resize 4024 M
    Wed Jun  3 11:24:00 2009
    Completed: ALTER DATABASE TEMPFILE '/bkp/oradata1/temp02.dbf'
    Wed Jun  3 12:53:26 2009
    ORA-1652: unable to extend temp segment by 128 in tablespace                 TEM
    P
    Wed Jun  3 12:53:26 2009
    ORA-1652: unable to extend temp segment by 128 in tablespace                 TEMand
    today also i have resized the temp files
    ALTER DATABASE TEMPFILE 'tempfile_name.dbf' RESIZE 5GB

  • Flash resize error

    Does anyone understand this error message? It's occurring on a flash site in Safari when I resize the browser's window size. I've used the site for over a year and the crash only recently started happening when I upgraded to Snow Leopard. It doesn't happen with Firefox.
    Process: WebKitPluginHost [697]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6531 (6531.4)
    Build Info: WebKitPluginHost-65310400~1
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [517]
    PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    PlugIn Identifier: com.macromedia.Flash Player.plugin
    PlugIn Version: 10.0.32.18 (1.0.4f18472)
    Date/Time: 2009-09-14 10:39:10.685 -0700
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 2771 sec
    Crashes Since Last Report: 5
    Per-App Interval Since Last Report: 2549 sec
    Per-App Crashes Since Last Report: 5
    Anonymous UUID: 54DBF5DB-CFE1-4C27-BF9E-03078BB83999
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ...romedia.Flash Player.plugin 0x1611ceb9 0x15ffc000 + 1183417
    1 ...romedia.Flash Player.plugin 0x161d6a4e 0x15ffc000 + 1944142
    2 ...romedia.Flash Player.plugin 0x163bcaaf Flash_EnforceLocalSecurity + 689295
    3 ...romedia.Flash Player.plugin 0x163bd34a Flash_EnforceLocalSecurity + 691498
    4 ...romedia.Flash Player.plugin 0x163c1433 Flash_EnforceLocalSecurity + 708115
    5 ...romedia.Flash Player.plugin 0x16314882 Flash_EnforceLocalSecurity + 610
    6 com.apple.WebKit.PluginHost 0x0000ef47 0x1000 + 57159
    7 com.apple.QuartzCore 0x92b096da backing_callback(CGContext*, void*) + 77
    8 com.apple.QuartzCore 0x928a6af4 CABackingStoreUpdate + 2326
    9 com.apple.QuartzCore 0x928a5de9 -[CALayer _display] + 958
    10 com.apple.QuartzCore 0x928a027b CALayerDisplayIfNeeded + 621
    11 com.apple.QuartzCore 0x9289f64a CA::Context::commit_transaction(CA::Transaction*) + 362
    12 com.apple.QuartzCore 0x9289f290 CA::Transaction::commit() + 316
    13 com.apple.CoreFoundation 0x94e00b02 __CFRunLoopDoObservers + 1186
    14 com.apple.CoreFoundation 0x94dbe61c __CFRunLoopRun + 4588
    15 com.apple.CoreFoundation 0x94dbcd34 CFRunLoopRunSpecific + 452
    16 com.apple.CoreFoundation 0x94dbcb61 CFRunLoopRunInMode + 97
    17 com.apple.HIToolbox 0x96f55fec RunCurrentEventLoopInMode + 392
    18 com.apple.HIToolbox 0x96f55da3 ReceiveNextEventCommon + 354
    19 com.apple.HIToolbox 0x96f55c28 BlockUntilNextEventMatchingListInMode + 81
    20 com.apple.AppKit 0x93b79c95 _DPSNextEvent + 847
    21 com.apple.AppKit 0x93b7950a -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    22 com.apple.AppKit 0x93b3b69b -[NSApplication run] + 821
    23 com.apple.WebKit.PluginHost 0x00006a09 0x1000 + 23049
    24 com.apple.WebKit.PluginHost 0x00002845 0x1000 + 6213

    Tentatively I want to say it seems to only occur when the Flash site's set to 100% of the window size.

  • Temporary tablespace Full error 10g RAC.

    Hi All,
    Can any one help me in below problem.
    After migrating one of database from single node to two node RAC database. we are facing temporary tablespace full problem. The database previously have 2 GB of temporary tablespace but after moving to RAC enviornment it is filling 32 GB of space and still generate error.
    Thanks & Regards
    Shailendra Wanjari

    FIND OUT WHO IS USING THAT TEMP.. I USE WHEN I SEE TEMP IS BEING EATEN UP...
    column tablespace format a12
    column username format a12
    break on username nodup skip 1
    select se.username
    ,se.sid
    ,su.extents
    ,su.blocks * to_number(rtrim(p.value)) as Space
    ,tablespace
    ,segtype
    from v$sort_usage su
    ,v$parameter p
    ,v$session se
    where p.name = 'db_block_size'
    and su.session_addr = se.saddr
    order by se.username, se.sid
    /

  • Tablespace Extend Error

    I'm getting the following error,
    ORA-01653: unable to extend table CDH.XXX_FEATURES by 8 in tablespace FLOW_XXXX
    Any pointers?
    Thanks.
    vinoo

    Hello,
    Your tablespace has ran out of space, you need to allocate more space to the tablespace either by adding more datafiles or extending some of the existing datafiles.
    If you are not the DBA responsible for the database (I assume you're not otherwise I would hope you already know what an ORA-01653 is) then you need report this to your DBA so that they can take the appropriate action.

  • Apps_ts_queues tablespace full error

    We had an issue last night where archive space filled and everything stopped until this morning when we cleared the disk space. Since that time we are getting the following error when opening previous requests in Apps
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01653: unable to extend table APPLSYS.WF_JAVA_DEFERRED by 16 in tablespace APPS_TS_QUEUES
    I ran
    SELECT tablespace_name, sum(bytes) free FROM DBA_FREE_SPACE
    group by tablespace_name;
    and it doesn't show any near 0 free however it doesn't show the APPS_TS_QUEUES tablespace in that list also.
    Where else can I look to see what is currently going on? If you click OK on the error it will give another about recent data etc and then open the previous service request you were trying to view.
    dba_tables has 10 in the pct_free column min extent is 131072 next extent 131072 and max extent as 2147483645
    Thanks

    Hi,
    What is the database version?
    I went ahead and added another datafile to the DB but I don't feel as if that queues datafile of 4GB should have really filled completely. Has anyone experienced this or is it normal for that tablespace to grow that large?It is normal for the tablespace to grow that large, so add more space to the existing datafile(s) or new datafile(s) and see if you get the same error or not.
    Regards,
    Hussein

  • Transport Tablespace export error.

    Hello to All.
    Oracle Version : 9.2.0.1
    Operating System : Windows XP
    Sir.
    On testing to export a transportable tables space I got the following errors. I am unable to understand the cause of errors. Please guide
    The command fired and errors are :
    Before this I have made the tablespace users read only by this command :;
    sql> alter tablespace users read only;
    Tablespace Altered
    C:\Documents and Settings\admin>exp \"sys/oracle as sysdba\" transport_tablespace=Y tablespaces=users log=ts_users.log
    Export: Release 9.2.0.1.0 - Production on Fri Oct 3 20:23:09 2008
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    Note: table data (rows) will not be exported
    About to export transportable tablespace metadata...
    EXP-00008: ORACLE error 1001 encountered
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 819
    ORA-06512: at "SYS.DBMS_SQL", line 19
    ORA-06512: at "SYS.DBMS_TTS", line 774
    ORA-25153: Temporary Tablespace is Empty
    ORA-06512: at "SYS.DBMS_PLUGTS", line 1093
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    thanks and regards
    Neeraj
    Edited by: ora-boy on Oct 3, 2008 8:05 AM
    Edited by: ora-boy on Oct 3, 2008 8:06 AM

    EXTREMELY sorry for this type of silly blunder.
    now the result is
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM TRANSPORT_SET_VIOLATIONS;
    VIOLATIONS
    Default Partition (Table) Tablespace SYSTEM for EMP1 not contained in transportable set
    Default Partition (Table) Tablespace SYSTEM for EMP1 not contained in transportable set
    Default Partition (Table) Tablespace SYSTEM for EMP1 not contained in transportable set
    Default Partition (Table) Tablespace USERS for EMP1 not contained in transportable set
    Default Partition (Table) Tablespace USERS for EMP1 not contained in transportable set
    Default Partition (Table) Tablespace USERS for EMP1 not contained in transportable set
    6 rows selected.
    but I am unable to understand this.
    thanks

  • DV + resize = errors

    Hi Folks,
    Some colleagues and I have done a lot of encoding (for
    capture only, not streaming) using FME2.5.0.2086 from DV (PAL) and
    resizing to 640x480 (mostly to get correct 4:3 aspect ratio). All
    seemed well for testing, but a some point later when watching the
    files back, we noticed some sections intermittently just seemed to
    drop frames or speed through a few frames (audio jumped or
    "clicked" as well).
    There were no dropped frames reported during capture, but it
    was noted that the framerate dipped on occasions.
    Examining metadata indicates two different framerates, 25fps
    and approx 21.97fps.
    CPU (Intel Core 2 T2700 @ 2GHz + 2GB RAM) sat at around 60%
    for all captures.
    The error was noticed when a random sample was played back in
    a variety of players - in this sample there were significant
    instances of the error. When we examined our test files, knowing
    what to look for, we did see subtle instances of same error -
    honestly all 4 of us didn't notice them during testing.
    We've got about 30 hours of captured material which now
    appears useless. While we must take responsibility for not
    discovering it earlier, I am really @&*%! that there is no
    indicator of any errors by the encoder. The framerate adption
    looked like a function of the VP6 codec (as you can select of 5
    quality settings). It appears that the whole lot has to be redone.
    Does anyone know if the framerate adaption can be corrected,
    or are the frames really dropped, even though the encoder said that
    it dropped none?
    I'd really appreciate any help on this as the redo will take
    a very long time.
    Thx in advance.

    Whoops, sorry - stream is 800 kbps using VP6, quality good +
    good, cpu dedicated...

  • System tablespace conversion error

    Hi all,
    I was practising the 8i to 9i upgrade in lab server, when I was trying to convert the dictionary managed tablespace to locally managed tablespace its throughing the error, I dont know what is the reason and what I have to do to eliminate this error
    I used this stmt to convert,
    EXECUTE DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_TO_LOCAL('SYSTEM');
    The error I got :
    BEGIN DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_TO_LOCAL('SYSTEM'); END;
    ERROR at line 1:
    ORA-10641: Cannot find a rollback segment to bind to
    ORA-06512: at "SYS.DBMS_SPACE_ADMIN", line 216
    ORA-06512: at line 1
    I have removed the rbs datafile after dropping the rbs tablespace. and created undo. but the error still comes, dont know what to do
    please help me out.
    Thanks in advance :)

    hi guys I have bounced the dba and restarted it, it worked fine, thanks

Maybe you are looking for

  • Iphone and ipad don't show up in left column of new iTunes

    I recently installed the new iTunes version. I don't understand how to "manually manage music and videos". How do I copy a file of music or an ap from iTunes to the iPhone or iPad? They don't show up now in the left hand column that lists the playlis

  • Export and import of mapping invalidates it

    Hi All, In Development environment I've built a mapping which validates well, deploys well and executes well. Now I export it (mdl) and import it on Production environment. When I try to validate it runs into an error. When I open the mapping I see t

  • CFCHART Interpolating Bar Graphs

    CFCHART is interpolating when plotting bar charts. I can see where interpolation would make sense for line charts, but not for bar charts. I am plotting stacked bar chart series, and am getting non-existant data appearing in the bar charts because of

  • How much benefit would I see in After Effects render times....

    I am starting to do some TV commercials for the company I work for. I am using FCP for some editing but doing most of the heavy lifting in After Effects. The commercials contain a lot of green screened images, lots of moving graphics, some sound effe

  • Allocation Table - cannot create STO

    Problem:  Activity status remains Not Active, no worklist can be selected. Error message:  Site 0000004001: latest generation date (20090629) is not before delivery date (20090629) Message no. MW371 When creating allocation table to generate STO, we