Oracle Error Logs

Hello,
When application executes SQL or PL/SQL code and error occurs, where can we find these error logs on Oracle database i.e. error log path on Unix.
Thanks.

user11945767 wrote:
Hello,
When application executes SQL or PL/SQL code and error occurs, where can we find these error logs on Oracle database i.e. error log path on Unix.
Thanks.Most likely there won't be any if your app doesn't provide them. The database alert log only reports system errors. SQL and PL/SQL errors are typically not seen as system errors. And they certainly aren't seen as errors by the OS.
Now, if the error were due to an underlying system error, there would probably be an entry in the alert log (in the bdump directory) and quite possibly a trace file as well.

Similar Messages

  • Oracle errors in Weblogic Error logs appear in non english

    We have a problem with weblogic error logging. Specifically, in a managed server's log file, Oracle errors such as ORA-XXXX show in Greek, not English. We are assuming
    that this is because the timezone is Europe/Athens. However, the weblogic application server runs with user.language=en, user.country=US. What's more, there are 4 application servers and 2 of them have this problem. The oracle database is accessed via weblogic datasources.
    Oracle database server Setup: Oracle Server 11gR2 running on Oracle Linux 64 bit, timezone set to Europe/Athens
    Weblogic Server: Weblogic 10.3.5 running on Oracle Linux 64 bit, timezone set to Europe/Athens
    The managed server, according to jrockit, the jvm runs with the following language related system properties:
    user.language=en, user.country=US, user.timezone=Europe/Athens
    The question is: How do we tell oracle / weblogic to log english text for the ORA errors?
    Thanks,
    Chris

    I digged in the weblogic installation directory and it seems like the domain configuration wizard messed up the jdbc configs for the data sources.
    The config xml files for the data sources in the /domain root/config/jdbc directory had oracle driver but the test query was for pointbase. I double checked from the database.xml file in the init-info directory and corrected the entry in the datasource config xmls and voila!.. the errors were gone.
    I am not sure if this was the right approach and whether i have solved the issue or simply patched it.. so I am keeping the question open. If any one has any inputs I will be grateful.
    If the mods/admins feel that the thread should be marked as solved I will surely do so.
    Thanks.

  • Oracle error 1012 ("Not Logged On") & AUTOTRAN=Y

    Hi.
    I have a problem trying to access an Oracle 8.0.6
    database from a 6.5 Tuxedo server.
    Both TMS and server execute tpopen correctly
    All services are declared as AUTOTRAN
    Everything seems to be OK according to the logsgenerated by Oracle XA libraries
    However, I always get the Oracle error 1012 ("Not Logged On")
    when executing SQL statements from my pro*C server.
    I just can't figure out why this error occurs.
    I also tried to explicitly open a transaction from the client,
    but the result is exactly the same (tpbegin is successfull,
    however).
    Could someone help me to make this work ?
    Thanks.

    Solved by removing "DB=<db>" from my OPENINFO string, as far as this parameter
    should only be used when using proc*C "EXEC SQL ... AT <db>" statements.
    "Mathieu Chauvin" <[email protected]> wrote:
    >
    Hi.
    I have a problem trying to access an Oracle 8.0.6
    database from a 6.5 Tuxedo server.
    Both TMS and server execute tpopen correctly
    All services are declared as AUTOTRAN
    Everything seems to be OK according to the logsgenerated by Oracle XA libraries
    However, I always get the Oracle error 1012 ("Not Logged On")
    when executing SQL statements from my pro*C server.
    I just can't figure out why this error occurs.
    I also tried to explicitly open a transaction from the client,
    but the result is exactly the same (tpbegin is successfull,
    however).
    Could someone help me to make this work ?
    Thanks.

  • "found dead shared server ... " errors occured in oracle alert log

    Dear all,
    I have found a error message in my oracle alert log which is "found dead shared server 's000, pid=(10,1)'". What's this mean? and this error will casue a core dump in ../cdump directory.
    btw. Thanks the answers of antti.koskinen and yingkuan.

    one more thing, my server is not configured as shared server mode, it is dedicated server mode. but I don't know why system inform me "found dead shared server..".

  • Help, How to view the error log of oracle Job

    Hi all,
    I created a job in my database, which clears the archivelog. After the job is executed, it occurs error.Such as :
    RMAN清理归档日志 1 问题 2010-3-19 下午03时11分00秒 GMT+08:00 PTDB 数据库实例 SYSTEM RMAN 脚本
    How to view the error log of oracle Job?
    Thank you.
    Eric Zhou

    Hello,
    Besides some views (with the scheduler) that you can get on the link below:
    http://download-west.oracle.com/docs/cd/B28359_01/server.111/b28310/scheduse002.htm#CHDGIDFD
    You may use the LOG parameter with RMAN so as to generate a logfile on the server.
    Also from EM DBConsole (starting with 10g) you may have the RMAN Backup Report.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Log unsuccessful attemps connecting to database+Oracle error

    Hi,
    I've a simple trigger to log all user's unsuccessful attempts to connect to a database for the oracle error:ora-1017( invalid username/password when trying to login)
    CREATE TABLE connection_audit (
    login_date DATE,
    username VARCHAR2(30));
    -- trigger to trap unsuccessful logons
    CREATE OR REPLACE TRIGGER T_LOGON_FAILURES
    AFTER SERVERERROR
    ON DATABASE
    BEGIN
    IF (IS_SERVERERROR(1017)) THEN
    INSERT INTO connection_audit
    (login_date, username)
    VALUES
    (SYSDATE, 'ORA-1017');
    END IF;
    END T_LOGON_FAILURES;
    Now, I would've to log the unsuccessful attempts due to whatever Oracle error, along with the oracle error.
    Can someone help me with the code changes?
    Thanks,
    Bhagat

    I've created a trigger which inserts a record into table SERVERERROR_LOG for
    every server error.
    CREATE OR REPLACE TRIGGER T_LOG_SERVER_ERRORS
    AFTER SERVERERROR ON DATABASE
    ** Purpose: T_LOG_SERVER_ERRORS TRIGGER -- THE SERVERERROR TRIGGER TAKES EVERY SERVER ERROR GENERATED
    ** FROM ORACLE PL/SQL AND PLACES IT INTO AN ORACLE TABLE.
    ** BY CAPTURING THE USER ID AND THE TIME OF THE ERROR, THE ORACLE ADMINISTRATOR WOULD BE
    ** IMMEDIATELY BE NOTIFIED VIA E-MAIL WHENEVER A SERVER ERROR OCCURS.
    DECLARE
    ls_user varchar2(30);
    ls_osuser varchar2(30);
    ls_machine varchar2(64);
    ls_process varchar2(9);
    ls_program varchar2(48);
    BEGIN
    SELECT username,osuser,machine,process,program
    INTO ls_user,ls_osuser,ls_machine,ls_process,ls_program
    FROM V$SESSION
    WHERE audsid=userenv('sessionid');
    INSERT INTO SERVERERROR_LOG
    VALUES(
    dbms_standard.server_error(1),
    localtimestamp,
    ls_user,
    ls_osuser,
    ls_machine,
    ls_process,
    ls_program);
    END;
    And My procedure below queries the table and notifies the Oracle Admin by
    E-mail for every server error.(P_NOTIFY_SERVER_ERR is the procedure which does the job of sending mail to Admin).
    PROCEDURE P_SERVER_ERRORS
    AS
    ** Purpose: PROCEDURE FOR CHECK FOR SERVER ERRORS .
    ** INVOKE THE PROCEDURE P_NOTIFY_SERVER_ERR,WHICH NOTIFIES THE ORACLE ADMIN
    ** EVERYTIME SERVER ERROR OCCURS.
    CURSOR C_SERVERERROR_LOG
    IS
    SELECT * FROM SERVERERROR_LOG;
    BEGIN
    FOR lc_servererror_log IN c_servererror_log
    LOOP
    P_NOTIFY_SERVER_ERR(lc_servererror_log.error,
    lc_servererror_log.error_dt_time,
    lc_servererror_log.username,
    lc_servererror_log.osuser,
    lc_servererror_log.machine,
    lc_servererror_log.process,
    lc_servererror_log.program);
    END LOOP;
    END P_SERVER_ERRORS;
    An Oracle job executes procedure P_SERVER_ERRORS once every 5 minutes.
    Thanks every one for your valuable suggestion.
    Cheers!!!!
    Regards,
    Bhagat

  • AIX - Oracle - Saposcol error log WARNING: SNAPDISK hdisk0 RESETING

    Dear all,
    I've this error log on ST06- OS Collector - Log Files
    14:24:40 25.02.2009   LOG: INFO: saposcol's shared memory size is 3692752.                                                           
    14:24:40 25.02.2009   LOG: INFO: saposcol is NOT running with EXTSHM=ON.                                                             
    14:24:40 25.02.2009   LOG: Shared Memory was created by process:942318                                                               
    14:24:40 25.02.2009   LOG: ==== Collector submitted. This is the parent process after fork.=====                                     
    14:24:43 25.02.2009   LOG: ==== Collector submitted. This is the child process after fork()=====                                     
    14:24:46 25.02.2009   LOG: Collector started - Version: COLL 20.87 640 - AIX v4.20 5L-64 bit 040309                                  
    14:24:47 25.02.2009   LOG: read put-file Wed Feb 25 10:06:30 2009                                                                    
    14:24:47 25.02.2009   LOG:  Collector PID: 958488                                                                               
    23:01:42 25.02.2009 WARNING: SNAPDISK:          hdisk0   > RESETING                                                                  
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev rblks:     180724  Curr rblks:     182308                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev wblks:     172336  Curr wblks:     652648                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev xfers:      29582  Curr xfers:      37728                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev time:       12312  Curr time:       15237                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         kb/s: 10642  ops/s: 359  util: 129  secs: 22.640    > RESETING                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:          hdisk1   > RESETING                                                                  
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev rblks:     169501  Curr rblks:     171341                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev wblks:     174376  Curr wblks:     654320                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev xfers:      23540  Curr xfers:      31712                                        
    23:01:42 25.02.2009 WARNING: SNAPDISK:         Prev time:       11425  Curr time:       14359              
    This system is on AIX 5.3 64 bit and Oracle 9 with ECC 5.0. This system was hung yesterday, when we try to restart Oracle and SAP, it was stuck again in saposcol start phase. But when we restart whole server with init command, the sap system can be started normally, but recently i found this error message in the saposcol log file. Before the server hung incident, the saposcol log file also display this kind of error.
    I just wonder, what is Warning: SNAPDISK about? is there any relationship with this error and the server hung incident. I search with the keyword but i found very minimum information....              
    Is it really need to start saposcol with environment variable EXTSHM = ON?
    Please kindly advise..
    Big thanks
    Fendhy.

    >
    Ongko Fendhy wrote:
    > Hi Mark,
    >
    > Thanks for replying..
    >
    > 1.) So i just can ignore this kind of warning. Btw this warning displayed so frequently. Still i can ignore it?
    >
    > 2.) Because it show a warning LOG: INFO: saposcol is NOT running with EXTSHM=ON everytime i start the saposcol so i think it is may be needed to set the EXTSHM env variable.
    >
    > 3.) The process stop on starting saposcol phase, so the rest of the startsap sequence never got executed
    >
    > Thanks a lot.
    Hi Fendhy,
    1) Yes, to the best of my knowledge you may ignore it. However if the warning indeed is so very frequent, then it would be good if you reported it in a SAP support message. I understand that SAP was working on making the code more intelligent in dealing with this kind of numeric quirks, so there might be a more recent saposcol version that gets rid of the problem.
    2) This message is purely informational. You could actually set EXTSHM=ON on a 64-bit platform but there would not be any practical benefit apart from no longer getting the INFO message in the log. Since EXTSHM is ignored with 64-bit, it cannot normally be the cause of the problem that you encountered.
    3) In that case there might be a specific issue with saposcol, which does not affect the database and SAP instance. If possible you might try reproducing the problem by starting saposcol separately with a higher trace level, e.g. "saposcol -l -t2 -z". If the hang occurs and the saposcol trace doesn't make you any wiser, you can also try monitoring the saposcol PID with "truss" (truss -p <pid>)
    Hope this helps,
    Mark

  • Error Logging in oracle 9i for failing sql statements

    Hello All,
    I am looking for a oracle utility which will allow me to log the oracle error message for all the queries filed on a schema. Will audit trail help me in doing this.
    Actually I am working on a third party application. I am using their API's for the customization, in some places the API just return database error but not the error code. So I basically want to know what query was fired and failed.
    Thanks,
    Sathish

    Hello Franky,
    I was able to use a trigger on "AFTER servererror ON DATABASE". This gave me the following error.
    ORA-08177: can't serialize access for this transaction
    Thanks for your help.
    Pavan - Thanks for your suggestion also.
    Sathish

  • Oracle 9i Enterprise Edition error log

    I tried to install Oracle 9i Enterprise Edition twice on Windows XP Home Edition and Windows XP Professional Edition. Both times, the installation completed successfully according to the Installer, but within 2 hours, the disk drive was full. Shutting down the Oracle processes and services did not stop the disk space accumulation. The error log in the directory \oracle\ora92\Apache\Apache\logs was being written to until all the disk space was gone. The messages said that isqlplus server terminated with exit with status 337296 and then isqlplus server restarted. The writing to the error log did not stop until Oracle 9i was uninstalled, after XP gave a message disk space was very low. What is the meaning of the error status 337296, and why does the same error repeatedly get written to the error log until the disk is full??

    From a shell window within X Windows, type
    oemapp dbastudio
    and it should launch the main tool.

  • Capturing oracle error codes into a variable

    Hi
    Can someone show me how it is possible to save an Oracle defined error code into a variable? What I am trying to do is when a stored procedure fails an Oracle error is raised, such as ORA-xxxx, then pass this code into variable to be saved into a log.
    How do I achieve this?

    user633278 wrote:
    How do I achieve this?Function SQLCODE in PL/SQL exception handler returns error code. SQLERRM returns message:
    SQL> declare
      2      x number;
      3  begin
      4      x := 1/0;
      5    exception
      6      when others
      7        then
      8          dbms_output.put_line('Error code: ' || SQLCODE);
      9          dbms_output.put_line('Error message: ' || SQLERRM);
    10  end;
    11  /
    Error code: -1476
    Error message: ORA-01476: divisor is equal to zero
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Limitation on DML error logging

    Can someone please advise what is not supported by DML error logging which was introduced in Oracle 10g?
    one Oracle document says "You cannot track errors in the error logging table for LONG, LOB, or object type columns".
    One says only non-scalar columns, like datatime is not support.
    Another one says it doesn't support nested table.
    Anyone has a more complete list of limitation?
    Thanks!
    Edited by: user611482 on Feb 9, 2010 3:32 PM

    PLease read the following,
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#sthref2234
    HTH
    Aman....

  • File does not exist error in Apache error log

    I have been getting the following error in apache error log located at $INST_TOP/apps/PROD_aclapp/logs/ora/10.1.3/Apache
    [Wed Mar 14 15:17:00 2012] [error] [client 173.26.0.33] [ecid: 1331718420:172.25.16.30:2172:0:484,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:19:13 2012] [error] [client 173.20.0.85] [ecid: 1331718553:172.25.16.30:2497:0:56,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6316,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6317,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6318,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5903,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5904,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5905,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6487,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.class
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6488,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:24:53 2012] [error] [client 173.26.2.15] [ecid: 1331718893:172.25.16.30:3108:0:66,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:24:58 2012] [error] [client 173.26.2.15] [ecid: 1331718898:172.25.16.30:2497:0:84,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:9,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:10,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    [Wed Mar 14 15:25:17 2012] [error] [client 173.25.2.8] [ecid: 1331718917:172.25.16.30:7669:0:6972,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:43 2012] [error] [client 173.25.9.5] [ecid: 1331718943:172.25.16.30:7663:0:5878,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:47 2012] [error] [client 173.25.2.8] [ecid: 1331718947:172.25.16.30:7663:0:5882,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6389,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6390,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    Kindly do help me in understanding why this error is arising. The entire directory path in the errors does not exist.
    Database version : Oracle 10.2.0.3
    Apps version : R 12.0.4

    Hi;
    1. It was working before If yes what have been changed?
    2. Did you try to close apps run autoconfig on db than appstier and retest issue?
    3. Please see:
    R12: "FRM-92050: FAILED TO CONNECT TO SERVER: /FORMS/LSERVLET" Error Message When Launching Forms [ID 1070263.1]
    Regard
    Helios

  • Error in running request: ORACLE error 20100 in FDPSTP

    Got following error when running a concurrent manager job:
    ORACLE error 20100 in FDPSTP
    Cause: FDPSTP failed due to ORA-20100: File o0002562.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log.
    ORA-06512: at "APPS.FND_FILE", line 410
    ORA-06512
    From the request logfile:
    APPPRSPR module: Payment Process Manager
    ORACLE error 20100 in FDPSTP
    Cause: FDPSTP failed due to ORA-20100: File o0002562.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log.
    ORA-06512: at "APPS.FND_FILE", line 410
    ORA-06512: at "APPS.FND_
    Any idea?
    Thanks

    We discussed this issue many times in the forum before; please go through old threads and it should be helpful in fixing this issue -- https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-20100&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Error REP-0300: ORACLE error occurred while running Custom Report

    Hi Team.
    We are facing a very strange issue here.
    We have an env , where all the custom reports are failing .Whereas the concerned env is a clone of the Production instance . There is one more instacne which is also a clone of the prod, over there these reports are working fine .
    I have checked all the thread here about this error, but could not get the required information .
    We are on RHEL 5 on Linux 64 bit server.
    Could you please guide me , how to figure out whats the difference between these cloned instances .
    We have an Sr with Oracle Support but its progressing very slowly.
    Error trail from log file
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_FROM_DATE='2013/08/01 00:00:00'
    P_TO_DATE='2013/08/10 00:00:00'
    P_PROJECT_ORG='ALL'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    Report Builder: Release 10.1.2.3.0 - Production on Thu Nov 28 07:41:22 2013
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Thanks .

    Please confirm that you have the patches mentioned in (Doc ID 1368715.1) applied.
    I understand this is a cloned instance, but this error is intermittent and having the patches applied should clear our doubts.
    Thanks,
    Hussein

  • Error Log while activation of info cube.

    Hi All,
      While activating the cube i'm getting the below error log.I though there there was an problem with installation.Again if i re-install also i'm getting the same problem.and i'm unable to any data and also my info source is not getting activated.. Coh\uld any one help me in this regard.......
    The error's are :
    Database log:            RSDGCA2021121810:23:20
    Program start============================================================
    Mass activation
    =========================================================================
    Process..................: system_1
    User.....................: SAPUSER
    Date, time...............: 18.12.2021, 10:23:20
    Platform.................: CUSTOMER-SAN(620)/ORACLE/WindowsNT/system
    Tool.....................: RSA1/RADMASG0
    Log......................: T, RSDGCA2021121810:23:20
    Program parameters:
    Input medium..............: Direct object entry
    Activation method.........: Activ
    Chk. mode.................: G
    Version to be activated...: M
    Versions to Be Deleted....: All versions are deleted
    Lock against paral. exec..: Shared
    Parallel mode.............: Switched off
    =========================================================================
    Number of objects to be analyzed: 11
    Number of relevant dependencies: 6
    Level 1:9 objects assigned, 6 less dependencies
    Level 2:2 objects assigned, 0 less dependencies
    Graph_Analysis: 11 objects on 2 topological levels
    Start phase 001 **********************************************************
    Activation of objects
    Activate objects at level 1
    Synchronous execution, no parallel processing *
    Activate table /BIC/DIC_SRI1
    Table /BIC/DIC_SRI1 was activated successfully
    Activate table /BIC/DIC_SRIP
    Table /BIC/DIC_SRIP was activated successfully
    Activate table /BIC/DIC_SRIT
    Table /BIC/DIC_SRIT was activated successfully
    Activate table /BIC/VIC_SRI2
    Table /BIC/VIC_SRI2 was activated successfully
    Activate table /BIC/VIC_SRIH
    Table /BIC/VIC_SRIH was activated successfully
    Activate table /BIC/VIC_SRII
    Table /BIC/VIC_SRII was activated successfully
    Activate table /BIC/VIC_SRIJ
    Table /BIC/VIC_SRIJ was activated successfully
    Activate table /BIC/VIC_SRIM
    Table /BIC/VIC_SRIM was activated successfully
    Activate table /BIC/VIC_SRIT
    Table /BIC/VIC_SRIT was activated successfully
    Synchronous processing: 1 sec., 9 objects, 9 costs
    Activate objects at level 2
    Synchronous execution, no parallel processing *
    Activate table /BIC/EIC_SRI
    Table /BIC/EIC_SRI was activated successfully
    Activate table /BIC/FIC_SRI
    Table /BIC/FIC_SRI must be created in the database
    Adjust table in DB >>>
    sql:
    CREATE TABLE "/BIC/FIC_SRI"
    ("KEY_IC_SRIP" NUMBER (000010)
    DEFAULT 0 NOT NULL,
    "KEY_IC_SRIT" NUMBER (000010)
    DEFAULT 0 NOT NULL,
    "KEY_IC_SRIU" NUMBER (000010)
    DEFAULT 0 NOT NULL,
    "KEY_IC_SRI1" NUMBER (000010)
    DEFAULT 0 NOT NULL,
    "/BIC/PR_SRI" NUMBER (000017, 000002)
    DEFAULT 0 NOT NULL)
    PCTFREE 10
    PCTUSED 60
    TABLESPACE PSAPSAN
    STORAGE (INITIAL 0000000016 K
    NEXT 0000010240 K
    MINEXTENTS 0000000001
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0000
    FREELISTS 004
    FREELIST GROUPS 01)
    PARTITION BY RANGE (KEY_IC_SRIP)
    PARTITION "/BIC/FIC_SRI0" VALUES LESS THAN (0))
    ORA-00439: feature not enabled: Partitioning
    DDL time(___1): .........3 milliseconds
    The SQL statement was not executed
    Table /BIC/FIC_SRI (Error adjusting the database)
    Table /BIC/FIC_SRI was not activated
    Synchronous processing: 0 sec., 2 objects, 2 costs
    Activation of objects
    End phase  001 ***********************************************************
    Start phase 002 **********************************************************
    Final log
    Following objects not activated/deleted or activated/deleted w. warning:
    Table /BIC/FIC_SRI could not be activated
    (E- Table /BIC/FIC_SRI (Error adjusting the database) )
    Final log
    End phase  002 ***********************************************************
    Start phase 003 **********************************************************
    Statistics on activated and deleted objects
    Number of objects to be activated............:  11
    Objects not activated........................:  1
    Activated objects with errors in dependencies:  0
    Objects activated with warning...............:  0
    Successfully activated objects...............:  10
    Number of objects to be deleted..............:  0
    Objects not successfully deleted.............:  0
    Successfully deleted objects.................:  0
    Tables/views with DROP/CREATE................:  0
    No. of them marked for DROP/CREATE: 0
    Not marked for DROP/CREATE: 0
    Number of nametabs to be deleted.............:  0
    Successfully deleted nametabs................:  0
    Nametabs that were not successfully deleted..:  0
    Statistics on activated and deleted objects
    End phase  003
    Process..................: system_1
    Return code..............: 8
           |   Date, time...............: 18.12.2021, 10:23:22                                                                               

    Hi
    Your E-table of the Cube is not getting activated try activating it from SE11.
    orelse try program RSDG_CUBE_ACTIVATE to activate the cube .
    See the Mappings again -- try to activate entire data flow again.
    Hope it helps
    Edited by: Aduri on Dec 18, 2008 11:21 AM

Maybe you are looking for