Error in tablespace

we are getting ora 600

ORA-600 can cause due N number reasons.
The first thing you need to do is consulting alert.log file and then consulting the associated trace file generated by the error.
As others said, Metalink has ora-600 lookup form, where you can paste the first argument or other details to know the exact reason.
Jaffar

Similar Messages

  • Error : Temporary Tablespace is Empty  when doing expdp/impdp

    Hi all,
    I was doing expdp on my oracle 10.1.0.2.0 DB on Win XP P, though the user is having a default temporary tablespace with a temp file on autoextend enabled, I got the message as...
    ORA-25153: Temporary Tablespace is Empty
    Then I created a new temporary tablespace for the user with 500M tempfile and autoextend enabled, then expdp went through.
    Now I am doing the impdp for the same .dmp file to generate one sqlfile for the DB,
    again I am facing the same error message as...
    ORA-25153: Temporary Tablespace is Empty
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    17FE07EC 13460 package body SYS.KUPW$WORKER
    17FE07EC 5810 package body SYS.KUPW$WORKER
    17FE07EC 3080 package body SYS.KUPW$WORKER
    17FE07EC 3530 package body SYS.KUPW$WORKER
    17FE07EC 6395 package body SYS.KUPW$WORKER
    17FE07EC 1208 package body SYS.KUPW$WORKER
    17ABE058 2 anonymous block
    Job "CHECKUP"."SYS_SQL_FILE_FULL_02" stopped due to fatal error at 10:09
    The message indicates that...
    ORA-25153: Temporary Tablespace is Empty
    Cause: An attempt was made to use space in a temporary tablespace with no files.
    Action: Add files to the tablespace using ADD TEMPFILE command.
    SO my question is every time I do any imp exp have I to add temp file in my temporary tablespace? will it not be cleared on the completion of the job?
    Any advice please.

    Hi Sabdar,
    The result of the query is as...
    SQL> SELECT * FROM DATABASE_PROPERTIES where
    2 PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
    PROPERTY_NAME
    PROPERTY_VALUE
    DESCRIPTION
    DEFAULT_TEMP_TABLESPACE
    TEMP
    Name of default temporary tablespace
    So the default temporary tablespace is TEMP which is not having any tempfile as I cloned this DB from the primary DB, but the user I am using for the impdp is 'checkup' and the temporary tablespace for 'checkup' is 'checkup_temp1' which s having tempfile.
    SO then why the impdp job is going to server's temporary tablespace instead of user's temporary tablespace.
    Is there any way to get whether 'checkup_temp1' tablespace is the default temporary tablespace for 'checkup' or not?
    Can I create create the user mentioning default temporary tablespace anyway because it is giving me error as...
    SQL> create user suman identified by suman
    2 default tablespace checkup_dflt
    3 default TEMPORARY TABLESPACE checkup_temp1;
    default TEMPORARY TABLESPACE checkup_temp1
    ERROR at line 3:
    ORA-00921: unexpected end of SQL command
    Then I did ...
    SQL> create user suman identified by suman
    2 default tablespace checkup_dflt
    3 TEMPORARY TABLESPACE checkup_temp1;
    User created.
    Regards

  • RMAN throwing errors during Tablespace Backup - RMAN-06004 and RMAN-06019

    Hi All.
    Please help me to fix trail of error message I'm getting while trying backup of a newly added tablespace in database. I'm using RMAN as a recovery method.
    Tablespace Name: test
    DB Version: Oracle 10g R1.
    OS: Red Hat Linux 5
    RMAN> report schema;
    Report of database schema
    List of Permanent Datafiles
    ===========================
    File Size(MB) Tablespace RB segs Datafile Name
    1 490 SYSTEM YES /u01/app/oracle/oradata/qrcl/system01.dbf
    2 25 UNDOTBS1 YES /u01/app/oracle/oradata/qrcl/undotbs01.dbf
    3 270 SYSAUX NO /u01/app/oracle/oradata/qrcl/sysaux01.dbf
    4 23 USERS NO /u01/app/oracle/oradata/qrcl/users01.dbf
    5 40 TEST NO /u01/app/test01.dbf
    List of Temporary Files
    =======================
    File Size(MB) Tablespace Maxsize(MB) Tempfile Name
    1 20 TEMP 32767 /u01/app/oracle/oradata/qrcl/temp01.dbf
    RMAN>
    RMAN> backup tablespace "test";
    Starting backup at 22-AUG-12
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 08/22/2012 11:57:13
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20202: tablespace not found in the recovery catalog
    RMAN-06019: could not translate tablespace name "test"
    RMAN> restore tablespace test;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "test": expecting one of: "double-quoted-string, identifier, single-quoted-string"
    RMAN-01007: at line 1 column 20 file: standard input
    I tried to update Catalog Server but still no luck:
    RMAN> RESYNC CATALOG;
    starting full resync of recovery catalog
    full resync complete
    Please Assist.
    Thanks
    Prashant Dixit

    Hello Prashant;
    The main issue is your tablespace name is an RMAN Reserved Word "Test"
    http://docs.oracle.com/cd/B13789_01/server.101/b10770/rcmcomma.htm#1006728
    Different test
    -- Create the tablespace
    CREATE TABLESPACE OTN_TEST DATAFILE
      '/u01/oradata/RECOVER2/test01.dbf' SIZE 1M AUTOEXTEND OFF
    LOGGING
    ONLINE;-- Create a user for the tablespace
    CREATE USER RMAN_TEST
      IDENTIFIED BY RMAN_TEST
      DEFAULT TABLESPACE OTN_TEST
      TEMPORARY TABLESPACE TEMP
      PROFILE DEFAULT
      ACCOUNT UNLOCK;
    ALTER USER RMAN_TEST QUOTA UNLIMITED ON "OTN_TEST";  -- Create a table in the tablespace
    CREATE TABLE RMAN_TEST.EMP
      EMPNO     NUMBER,
      ENAME     VARCHAR2(30 BYTE),
      JOB       VARCHAR2(30 BYTE),
      MGR       NUMBER,
      HIREDATE  DATE,
      SAL       NUMBER,
      COMM      NUMBER,
      DEPTNO    NUMBER
    TABLESPACE OTN_TEST;-- Add some data
    SET DEFINE OFF;
    Insert into RMAN_TEST.EMP
       (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)
    Values
       (7369, 'SMITH', 'CLERK', 7902, TO_DATE('12/17/1980 00:00:00', 'MM/DD/YYYY HH24:MI:SS'),
        800, 20, 0);
    Insert into RMAN_TEST.EMP
       (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)
    Values
       (5000, 'NOCATALOG', 'DBA', 77902, TO_DATE('04/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'),
        200, 0, 0);
    COMMIT;-- start RMAN and backup tablespace
    RMAN> BACKUP TABLESPACE OTN_TEST;
    Starting backup at 22-AUG-12
    starting full resync of recovery catalog
    full resync complete
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00007 name=/u01/oradata/RECOVER2/test01.dbf
    channel ORA_DISK_1: starting piece 1 at 22-AUG-12
    channel ORA_DISK_1: finished piece 1 at 22-AUG-12
    piece handle=/u01/app/oracle/flash_recovery_area/RECOVER2/backupset/2012_08_22/o1_mf_nnndf_TAG20120822T080711_839pczng_.bkp tag=TAG20120822T080711 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 22-AUG-12
    Starting Control File and SPFILE Autobackup at 22-AUG-12
    piece handle=/u01/app/oracle/flash_recovery_area/RECOVER2/autobackup/2012_08_22/o1_mf_s_791971633_839pd1bm_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 22-AUG-12
    Note
    If you dropped the tablespace then you need to recover the database to a point in time, not the tablespace.
    Best Regards
    mseberg

  • Error opening tablespaces page in 10g OEM

    i am getting problem in opening tablespaces and datafile pages in oem. also user I/O is too high and user dbsnmp is the user generating most of activity, top sql is
    insert into mgmt_db_size_gtt select tablespace_name, NVL(sum(bytes)/:"SYS_B_0", :"SYS_B_1") sz from sys.dba_free_space group by tablespace_name
    can anybody help me please
    u can write me at
    [email protected]
    [email protected]

    Try to bounce the box and see if anything good happens!

  • Getting error in remapping to single tablespace in transporable tablespaces

    I am running oracle 10g release 2, Solaris 10 on sparc machine
    I want to transfer data using transportable tablespaces. I am using Oracle data Pump for this purpose and want to remap all the tablespaces on my source database to one tablepace on destination machine.
    To do this, when i included the following clause in my import (impdp) statement.
    REMAP_TABLESPACE=A:STORY,B:STORY
    It correctly maps schema A, but when it goes for Schema B, then I get the error that tablespace already exists.
    Is there any way to avoid this error.

    Hi Babu
    please check whether the occurence of the target structure in multiple times or not. if it is 1..1 then change it to 0..unbounded.
    case2: take the payload from the sxmb_moni and put tha payload in the message mapping you will come to know where is the error.
    if still have the problem please reply back
    Thanks
    Rinku
    Hi babu
    check whether the occurence for the target node is 0..unbounded.
    Thanks
    Rinku
    Message was edited by:
            Rinku Gangwani

  • DROP EXAMPLE tablespace Error : Plz help me

    Hi all,
    I try to drop the EXAMPLE tablespace but I get this error :
    alter tablespace example offline;
    DROP TABLESPACE example INCLUDING CONTENTS AND DATAFILES ;
    ORA-29857 : domain indexes and / or secondary objects exist in the tablespace
    I'm using Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 on Linux server.
    Please tell me :
    -The utility of this tablespace?
    -how to do to drop this tablespace?
    Thanks

    Those users are simple demo users, they are created by default on 9i and on 10g R1 and R2 those are created if at db creation time you check the demo account check box or if you choose the easy install mode with default database.
    Those accounts should not be present in a production environment, and in case they are, they should remain 'lockded and expired'. So by dropping those users nothing happens, you may rebuild those accounts whenever you want by running the scripts located at the ORACLE_HOME/demo, if they are not present, you must install them from the companion disk (10g).
    ~ Madrid

  • Two Errors during Unicode import into Target System

    I exported our non-unicode 64-bit test NW 7.0 BW database as unicode and now I have started the import into the new unicode database on the target system.  I am using the Single Code Page System Conversion to Unicode NW 7.0 SP16 and higher documentation.  We are at service pack 18 with NW 7. During the Import ABAP phase the sapinst stopped with an errors.  I found the following the first error in the SAP000.log - O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20090326104509
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#18 $ SAP
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Nov 18 2008 23:19:12
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe -i SAP0000.cmd -dbcodepage 4103 -l SAP0000.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DDL) ERROR: no tablespace for TABART SLEXC
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DDL) ERROR: no tablespace for TABART SLEXC
    (DB) INFO: disconnected from DB
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20090326104509
    The second error appears in the SAPSLEXC.LOG - O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20090326104509
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#18 $ SAP
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Nov 18 2008 23:19:12
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSLEXC.cmd -dbcodepage 4103 -l SAPSLEXC.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (GSI) INFO: dbname   = "BWP20090325020311                                                                                "
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "STBWP64                                                         "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "STBWP64"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 2"
    (GSI) INFO: machine  = "4x AMD64 Level 15 (Mod 4 Step 8)"
    (DDL) ERROR: no tablespace for TABART SLEXC
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DDL) ERROR: no tablespace for TABART SLEXC
    (DB) INFO: disconnected from DB
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    O:\usr\sap\BWP\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20090326104509
    It looks like the same error but in two different logs. Has anyone seen this error before?  Thanks.

    I checked and the datafiles for all the tablespaces are set to autoextend up to 10gb and none have done this in the tablepaces that are close to being full.  I did increase three tablespaces that were showing close to being full and that did not resolve the error.  Would I need to restart the process from the beginning and adjust the dbsize.xml to make it work?

  • Pass tablespace(s) as a parameter to RMAN using batch file (windows2000)

    I want to make a backup of one or more than one tablespaces.
    For Example:
    Backup tablespace USERS,TOOLS;
    Backup tablespace USERS;
    In this regards I am using windows batch file. Below you find the code of batch file which I am using to perform this operation (windows 2000)
    Batch file (c:\rman.cmd)
    set tbs1=%1
    set tbs2=,%2
    if exist tbs1 == goto usage
    if exist tbs2 == goto usage
    echo BACKUP tablespace %tbs1% %tbs2% ; > c:\temp\tbs.rman
    rman TARGET / @ c:\temp\tbs.rman
    Problem
    I run this batch file on command line .
    When I issue this command its ok and backed up both the tablespaces.
    Host @c:\rman.cmd USERS,TOOLS
    But when I want to backup only one tablespace and issue the command like that:
    Host @c:\rman.cmd USERS
    It gave the following error
    BACKUP tablespace users , ;
    Found comma after first tablespace.
    Point of focus
    How to get rid of the comma after first tablespace on run time, when I want to backup only one tablespace.
    BACKUP tablespace users , ;
    How to avoid that comma on run time when I only want to make a backup of single tablespace.
    Please check this matter it is only the batch file side problem.
    With Best Regards
    Fawad Ahmed

    I am not expert is DOS but I think you can fix this with
    a simple programming logic elements in the script.
    You have 2 cases:
    1 case ) When you have only one parameter
    2 case ) When you have more or equal than two parameters
    if exist tbs1 == goto mark1
    if exist tbs2 == goto mark2
    mark2:
    echo BACKUP tablespace %tbs1% %tbs2% ; > c:\temp\tbs.rman
    goto end
    mark1:
    echo BACKUP tablespace %tbs1% ; > c:\temp\tbs.rman
    goto end
    end:
    rman TARGET / @ c:\temp\tbs.rman
    This can be one the case for 1 or 2 parameters . If
    you think to pass more parameters you have to use
    another logic.
    I hope this can help you!
    Joel P�rez

  • CJS-00091 Unable to create the tablespaces -R/3 4.7E installation

    Hi All,
    We are installing R/3 4.7 Enterprise  x200-SR1 release. While installing Database instance, SAPinst got terminated with the below error at tablespace creation step.
    CJS-00091  Unable to create the tablespaces. DIAGNOSIS: There is not enough free disk space: Mount point | space required | space available | SAPDATA directories
    /oracle/DCM/sapdata1   |   44891   |   10408.3   |   4,3,1,2
    . SOLUTION: Make more disk space available.
    We have 10GB,12GB,30GB,30GB available in sapdata1,sapdata2,sapdata3 and sapdata4 respectively. But why the installation is trying to load all the exports into sapdata1.
    If any one would have faced the similar kind of issues or know the solution please suggest me the solution.
    Best Regards,
    Ganesh.

    Hi,
    Have you distributed the sapdata files in the Installation Dialogue Box ? means Have you specified different directories for different sapdata files during Installation process ?
    Please re-distribute the sapdata files location by re-running the SAP Installation. As sapdata1 location is nt having the demanded space (44891 MB).
    Regards,
    Bhavik G. Shroff

  • DBIF_REPO_SQL_ERROR after SGEN: Tablespace is possibly full

    Dear SAP gurus,
    This is an a SAP ERP60 EHP3 system with Oracle we  are in the process of patching it. First, We have download all sw components patches (EHP3 SPS6) we patched java stack and then the sw components -SAP_ABA and SAP_BASIS from SP17 to SP22.
    We ran SGEN for SAP_ABA and SAP_BASIS and it is when the issues start coming out.
    "2.043 generation error(s): Tablespace is possibly full (with load tables)"
    Then we tried to access any SAP Transaction related to ORacle:
    "DBIF_REPO_SQL_ERROR".
    From work process logs:
    C Wed Feb 15 11:02:26 2012
    C OCIStmtExecute() failed with -1=OCI_ERROR
    C SQL error 600:
    C *** ERROR => Error 600 in stmt_execute() from oci_execute_stmt(),
    orpc=119
    [dbsloci.c 12981]
    C *** ERROR => ORA-600 occurred when executing SQL stmt (parse error
    offset=0)
    [dbsloci.c 12983]
    C
    sc_p=0x5901b30,no=182,idc_p=0x5917a88,con=0,astyle='font-family:courier'
    ct=1,slen=67,smax=256,#vars=
    2,stmt=0x5dcaa30,table=D010INC
    C INSERT INTO "D010INC" ( "MASTER" , "INCLUDE" ) VALUES ( :A0 , :A1 );
    C
    sc_p=0x5901b30,no=182,idc_p=0x5917a88,con=0,astyle='font-family:courier'
    ct=1,slen=67,smax=256,#vars=
    2,stmt=0x5dcaa30,table=D010INC
    C Dumping DBSL stmt. cache:
    C prep=0,lit=0,nsql=0,lobret=0,xop=1,dbcnt=119,upsh=
    (nil),stmtp=0x5bcc0f8,rtc=0
    C IN :
    cols=2,rmax=387,xcnt=232,rpc=0,rowi=232,rtot=232,upto=4294967295,rsize=16
    0,vmax=32,bound=1,iobuf_p=0x5a2a7b0,vda_p=0x5db8470
    C lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    C INSERT INTO "D010INC" ( "MASTER" , "INCLUDE" ) VALUES ( :A0 , :A1 );
    B ***LOG BYL=> DBQ action required because of database error
    [dbsh#3 @ 1104] [dbsh 1104 ]
    B SQL code: 600, SQL text: ORA-00600: internal error code, arguments:
    [4553], [2], [0], [], [], [], [], []
    B ***LOG BY4=> sql error 600 performing CLC on table D010INC
    [dbrepo#5 @ 6034] [dbrepo 6034 ]
    B ***LOG BY0=> ORA-00600: internal error code, arguments: [4553], [2],
    [0], [], [], [], [], [] [dbrepo#5 @ 6034] [dbrepo 6034 ]
    B DBREPO: new rc return for insert_inc_difference
    A TH VERBOSE LEVEL FULL
    We tried to extend the tablespace PSAPSR700 (which is related to table
    D010INC) but we are still getting dumps like "DBIF_REPO_SQL_ERROR".
    Can you please guide us how to proceed?This query is very urgent since we
    prefer that our developers do not work until we resolve the issue.
    Thanks in advance, Marc

    Thanks for your reply Venky,
    RMAN> connect target /
    connected to target database: SHD (DBID=1683093070)
    using target database control file instead of recovery catalog
    RMAN> backup check logical validate (datafile 2);
    Starting backup at 16-FEB-12
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=193 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 02/16/2012 12:22:36
    ORA-19602: cannot backup or copy active file in NOARCHIVELOG mode
    alert_SID.log
    Thu Feb 16 09:43:42 2012
    Errors in file /oracle/SHD/saptrace/usertrace/shd_ora_3380.trc:
    ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    Thu Feb 16 09:43:47 2012
    Doing block recovery for file 2 block 3455
    Block recovery from logseq 19230, block 22155 to scn 1338742588
    Thu Feb 16 09:43:47 2012
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 19230 Reading mem 0
      Mem# 0: /oracle/SHD/origlogB/log_g12m1.dbf
      Mem# 1: /oracle/SHD/mirrlogB/log_g12m2.dbf
    Block recovery completed at rba 19230.22329.16, scn 0.1338742589
    Doing block recovery for file 2 block 297161
    Block recovery from logseq 19230, block 12545 to scn 1338742588
    Thu Feb 16 09:43:47 2012
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 19230 Reading mem 0
      Mem# 0: /oracle/SHD/origlogB/log_g12m1.dbf
      Mem# 1: /oracle/SHD/mirrlogB/log_g12m2.dbf
    Block recovery completed at rba 19230.22329.16, scn 0.1338742589
    Doing block recovery for file 35 block 352889
    Block recovery from logseq 19230, block 22155 to scn 1338742590
    Thu Feb 16 09:43:48 2012
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 19230 Reading mem 0
      Mem# 0: /oracle/SHD/origlogB/log_g12m1.dbf
      Mem# 1: /oracle/SHD/mirrlogB/log_g12m2.dbf
    Block recovery stopped at EOT rba 19230.22329.16
    Block recovery completed at rba 19230.22329.16, scn 0.1338742589
    Thu Feb 16 09:43:49 2012
    Errors in file /oracle/SHD/saptrace/usertrace/shd_ora_30410.trc:
    ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    Thu Feb 16 09:43:54 2012
    dev_server0
    Wed Feb 15 10:55:06 2012
    A  GENER request remote generation: CL_SRT_WSP_HELPER_METHODS=====CP.
    A
    A Wed Feb 15 10:55:19 2012
    A  GENER request remote generation: RSDSOSCCM.
    A
    A Wed Feb 15 10:55:23 2012
    A  GENER starting inline generation: RSDSOSCCM (reason: compile error during remote generation).
    C
    C Wed Feb 15 10:55:26 2012
    C     OCIStmtExecute() failed with -1=OCI_ERROR
    C     SQL error 600:
    C  *** ERROR => Error 600 in stmt_execute() from oci_execute_stmt(), orpc=9
    [dbsloci.c    12981]
    C  *** ERROR => ORA-600 occurred when executing SQL stmt (parse error offset=0)
    [dbsloci.c    12983]
    C  sc_p=0x58fd3f0,no=62,idc_p=0x5916100,con=0,act=1,slen=67,smax=256,#vars=2,stmt=0x5cecfb0,table=D010INC
    C  INSERT INTO "D010INC" ( "MASTER" , "INCLUDE" ) VALUES ( :A0 , :A1 );
    C  sc_p=0x58fd3f0,no=62,idc_p=0x5916100,con=0,act=1,slen=67,smax=256,#vars=2,stmt=0x5cecfb0,table=D010INC
    C  Dumping DBSL stmt. cache:
    C  prep=0,lit=0,nsql=0,lobret=0,xop=1,dbcnt=9,upsh=(nil),stmtp=0x5cedc58,rtc=0
    C  IN : cols=2,rmax=387,xcnt=9,rpc=0,rowi=9,rtot=9,upto=4294967295,rsize=160,vmax=32,bound=1,iobuf_p=0x5da5400,vda_p=0x5cee310
    C       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    C  INSERT INTO "D010INC" ( "MASTER" , "INCLUDE" ) VALUES ( :A0 , :A1 );
    B  ***LOG BYL=> DBQ action required because of database error            [dbsh#3 @ 1104] [dbsh    1104 ]
    B  SQL code: 600, SQL text: ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    B  ***LOG BY4=> sql error 600    performing CLC on table D010INC    [dbrepo#5 @ 6034] [dbrepo  6034 ]
    B  ***LOG BY0=> ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], [] [dbrepo#5 @ 6034] [dbrepo  6034 ]
    B  DBREPO: new rc return for insert_inc_difference
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    Regards, Marc

  • SQL*LOADER 시 발생하는 ORA-1653 ERROR

    제품 : SQL*PLUS
    작성날짜 : 2002-04-25
    SQL*LOADER 실행 시 발생하는 ORA-1653
    ====================================
    PURPOSE
    다음은 SQL*LOADER 실행시 ORA-1653 ERROR가 발생시에 조치하는
    방법을 설명한다.
    Explanation
    ORA-1653 error 는 특정 tablespace 에 space 가 부족해서 table의
    extent가 일어나지 못해서 발생하는 error 이다 .
    먼저 error message 에서 tablespace name 이 무엇인지 먼저
    check 한다.
    그리고 다음 command 를 이용해 해당 tablespace 를 늘려주면 된다.
    ALTER TABLESPACE tablespace_name ADD DATAFILE '.....' size 100m;
    그러나 이때의 tablespace 가 SYSTEM 일 경우는 user 의 default
    tablespace 가 잡혀있지 않기 때문이어서 근본적인 해결이 필요하다.
    이 경우는 무작정 tablespsace 를 늘리지 말고 user 의 default
    tablespace 를 create 후 user 에게 할당해주도록 한다.
    CREATE TABLESPACE tablespace_name datafile '...' size 100m;
    ALTER USER user_name IDENTIFIED BY passwd
    DEFAULT TABLESPACE tablespace_name
    TEMPORARY TABLESPACE temp ;
    위와 같이 user의 default tablespace 를 변환한 후, 이 default
    tablespace 안에 create table을 다시 한 후 sql*loader 를 실행한다.
    Reference Documents
    --------------------

    Hi,
    You must have more than one tnsnames file or multiple installations of oracle. What i suggest you do (as I'm sure will be mentioned in ed's link that you were already pointed at) is the following (* i assume you are on windows?)
    open a command prompt
    set TNS_ADMIN=PATH_TO_DIRECTOT_THAT_CONTAINS_CORRECT_TNSNAMES_FILE (i.e. something like set TNS_ADMIN=c:\oracle\network\admin)
    This will tell oracle use the config files you find here and no others
    then try sqlldr user/pass@db (in the same dos window)
    see if that connects and let us know.
    Cheers,
    Harry
    http://dbaharrison.blogspot.com

  • 10gR2 under Solaris 10: Error creating sample database

    I am attempting to install 10gR2 on a Sun Ultra 10 Sparc workstation running Solaris 10. I successfully configured the ASM drives and loaded the software, and am now attempting to install the actual database software.
    While the installer is running the Database Configuration Assistant, the second "recommended" configuration program, I get an error almost halfway through that says "ORA-19879: error reading backup piece". Looking through the logs kept by the Assistant, I find this entry:
    Grant succeeded.
    20061228 03:17:09
    1 row selected.
    old 30: dbms_backup_restore.restoreDataFileTo(data_file_id,'&data_file_name');
    new 30: dbms_backup_restore.restoreDataFileTo(data_file_id,'/u01/app/oracle/product/10.2.0/db_1/assistants/dbca/templates/example.dmp');
    old 33: dbms_backup_restore.restoreBackupPiece('&data_file_backup', done);
    new 33: dbms_backup_restore.restoreBackupPiece('change_on_install', done);
    Allocating device....
    Specifying datafiles...
    Specifing datafiles...
    Restoring ...
    declare
    ERROR at line 1:
    ORA-19624: operation failed, retry possible
    ORA-19870: error reading backup piece
    /u01/app/oracle/product/10.2.0/db_1/dbs/change_on_install
    LRM-00116: syntax error at 'tablespaces' following '='
    IMP-00022: failed to process parameters, type 'IMP HELP=Y' for help
    IMP-00000: Import terminated unsuccessfully
    ORA-19505: failed to identify file
    "/u01/app/oracle/product/10.2.0/db_1/dbs/change_on_install"
    ORA-27037: unable to obtain file status
    SVR4 Error: 2: No such file or directory
    Additional information: 3
    ORA-06512: at "SYS.DBMS_BACKUP_RESTORE", line 5146
    ORA-06512: at line 33
    I couldn't find anything wrong in "example.dmp", and I couldn't find "change_on_install" in the directory listed, even while the error window was still on the screen. Most of the errors in the log following this fragment have to do with tablespace EXAMPLE not being there.
    Someone else with a similar problem solved it by installing the database software without the sample databases. I'll give that a try tomorrow, but I'd still like to know where I'm even supposed to look to find the problem I had above.
    Thanks,
    Mike McCormick

    Okay, I've found at least one source for this problem. There is a script called mkplug.sql in the demo/schema directory that had a line that began "host imp .....". 'imp' is in the db_1/bin directory, which the PATH variable does not yet point to.
    So, my question now is whether I should change "host imp..." to "host $ORACLE_HOME/bin/imp..." in all the files it appears in (sted_mkplug.sql and sdoepsgv.sql, as well as mkplug.sql), or add $ORACLE_HOME/bin to the PATH variable manually.
    What I'm going to try is to deinstall the database, scrap the directories, then reload the software only. After that, I'll edit the files in the demo directory and use dbca to create the demo directories.
    Mike McCormick

  • Db2 command for create tablespaces of DB2 V9.1.3

    Dear All,
    Currently, I’ve run prepare for upgrade SAP form 4.6C/DB2 9.1.3 to ECC6.
    But, I don’t know to db2 command for create tablespaces as below.
    Could you please example the DB2 command for create tablespaces as below.
    ERROR> Insufficient free space in the database as follows:
    Please refer to file DBFPLUSD.RES for more details and dditional  information about the results of the free space check on DB6 !!!
    ERROR> Create tablespace PSAPDIMD with 120 MB
    ERROR> Create tablespace PSAPDIMI with 120 MB
    ERROR> Create tablespace PSAPODSD with 130 MB
    ERROR> Create tablespace PSAPODSI with 130 MB
    ERROR> Create tablespace PSAPFACTD with 120 MB
    ERROR> Create tablespace PSAPFACTI with 120 MB
    ERROR> Create tablespace PSAPEL700D with 420 MB
    ERROR> Create tablespace PSAPEL700I with 220 MB
    ERROR> Create tablespace PSAPES700D with 21290 MB
    ERROR> Create tablespace PSAPES700I with 5420 MB
    Thanks in advance
    Regards,
    Jaturong P.

    Hi,
    During the PREPARE phase normally it creates a script which you can run for the creation of these Tablespaces,this script can be found in the Upgrade directory(eg:/usr/sap/put/log/DB6TBSXT.CLP - this script will have the command to create the tablespaces).Just run this script,it will create all the tablespaces based on the requirement.
    Regards,
    Sam
    Edited by: Cheriyan Sam on Apr 22, 2008 9:12 AM

  • IMPORT 시 발생하는 ORA-1658 ERROR에 대해서

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-08
    IMPORT 시 발생하는 ORA-1658 ERROR 처리
    =======================================
    PURPOSE
    IMPORT시에 ORA-1658 ERROR가 발생할 경우의 해결책을 알아본다.
    Problem Description
    이 error 는 import 시 특정 tablespace 에 table 생성이 불가능할 때
    발생하는 error 이다 .
    이는 EXPORT 시 EXPORT OPTION 중의 하나인 COMPRESS OPTION의 값을
    'YES' 로 하여 받았을 경우 (DEFAULT 값이 YES임) TABLE 의 EXTENT가
    일어난 모든 부분이 INITIAL 로 묶여지게 되며 IMPORT 시 INITIAL 만큼의
    연속된 영역이 TABLESPACE 에 있어야만 IMPORT 시 이 ERROR 가 발생하지
    않는다.
    Solution Description:
    1) error 가 발생한 tablespace 를 check 하여 해당 tablespace 를 늘려준다.
    disk 가 충분한 경우에 해주는 방안이다.
    2) 미리 import할 user 영역에 initial을 적절하게 주어 table을 생성한다.
    그리고 import 시 ignore=y option 을 주어 import 한다 .
    만일 이 경우 table script가 없으면 export받은 dump file로부터 얻을
    수 있다.
    strings expdat.dmp | grep 'CREATE TABLE' >> tables.sql
    3) import 시 ora-1658 에러를 예방하기 위해서는 export 시 compress
    option 을 no 로 하여 export 를 한다.
    Reference Documents
    --------------------

  • Export tablespace

    Hai
    Iam a fresher and im learning dba.i have certain doubts. i tried but still i want to clarify from you people.
    by default how much mb of space will be allocated in a tablespace for a normal database user.where we have to query to get the information about the space available for a user in a tablespace.what should we do to increase the quota in the tablespace for that user
    by default users tablespace is alloted as the default tablespace for a database user.if the dba creates a new tablespace will the normal database user have access in the newly created tablespace.how to give the user, access to the newly created tablespace.cam the users have access to 2 tablespaces simultaneously?
    i tried tablespace level export/import.i performed the export properly but during the import of tablespace i get the following error
    in tablespace level export import if we export a tablespace named "apps" from the source database is it necessary that the same tablespace with same name,size and same datafile name must exist in the target dataabase.
    If the apps tablespace in source database is used by 5 people with name a1,a2,a3,a4,a5 is it necessary that the same users must exist in the target database fpr the apps tablespace?
    when i import the apps tablespace in my target database i get the following error as ora-29348
    how to perform the full database export/import.
    expecting the valuable replies....................
    Thanks a
    Amberson

    amberson wrote:
    Hai
    Iam a fresher and im learning dba.i have certain doubts. i tried but still i want to clarify from you people.
    by default how much mb of space will be allocated in a tablespace for a normal database user.where we have to query to get the information about the space available for a user in a tablespace.what should we do to increase the quota in the tablespace for that user
    by default users tablespace is alloted as the default tablespace for a database user.if the dba creates a new tablespace will the normal database user have access in the newly created tablespace.how to give the user, access to the newly created tablespace.cam the users have access to 2 tablespaces simultaneously?
    i tried tablespace level export/import.i performed the export properly but during the import of tablespace i get the following error
    in tablespace level export import if we export a tablespace named "apps" from the source database is it necessary that the same tablespace with same name,size and same datafile name must exist in the target dataabase.
    If the apps tablespace in source database is used by 5 people with name a1,a2,a3,a4,a5 is it necessary that the same users must exist in the target database fpr the apps tablespace?
    when i import the apps tablespace in my target database i get the following error as ora-29348
    how to perform the full database export/import.
    expecting the valuable replies....................
    PLease spend some time reading Oracle docs. They are available here, http://tahiti.oracle.com. All the questions of yours are answerable from docs. Please read the Administrator, Concepts, Utlities guide to get teh answers.
    And its not a good idea at all to ask many questions in one go only. Ask one at a time with complete description along with your db and os version.
    HTH
    Aman....

Maybe you are looking for

  • Moving iPhoto pictures to guest account's iPhoto Library.

    Hi, i use a 2006 mac mini, and I was wondering how can I move or Draft all of my iphoto pictures onto my 2nd account's iPhoto library on my mac mini? Because i have a "guest" account so to speak, and was just wondering if there's anyway i can do it.

  • Recursive Intelligence of Pacman "-u" switch?

    Whenever I update, I think I've been using the "-u" switch, but maybe haven't all the time, and was just using "pacman -Sy foo" (or "pacman -S foo").  I know the "-u" switch in effect removes then installs, so that leads me to a question... Question:

  • Organizing my Library and Deleting Pictures

    In my library I made duplicates of all my pictures for editing and now I need more space on my hard-drive for movies so I want to delete my original photos and leave the edited versions. I put all my originals in a folder and saved them to disks, I w

  • Microphone problems With Soundblaster X-Fi xtreme gam

    As the Commenct says i got problems with my microphone, When i installed the newest drivers it just stopt working after a while, first it workt but after like 2-3 days it stopt working i wounder what i can be if you have some ide? about what i can be

  • Backup password recovery

    How do i find out a password for a backup - i dont remember putting a password on and have tried entering everything i could think of? can anyone help me please?