Log-In Error, Help!

I get an error when logging into Discoverer Report Viewer. I can log in once or twice, but then after closing to see the results from a change in Administrator, I recieve an error that reads as follows:
Attempt 1. RMI protocol over JRMP transport: Session has timed out. Either the session has timed out, or there is a problem maintaining http session ids between browser and web server. Please log in again. If the problem persists, please contact your Oracle Application Server administrator.
Attempt 2. RMI protocol over http transport: Session has timed out. Either the session has timed out or there is a problem maintaining http session ids between browser and web server. Please log in again. If the problem persists, please contact your Oracle Application Server administrator.
Hint: An administrator can further diagnose connection problems by running the "checkdiscoverer" script under <ORACLE HOME>/discoverer/util. Please contact your Oracle Application Server Administrator.
Is this a common error? Is there a certain way to log out to avoid this errror? Any advice/help you can give would be great. Thanks!

Here is the discoverer forum:
Discoverer

Similar Messages

  • System.log DNS Error, help

    Hi, I am using a fairly old app on my Server that runs on the desktop and reads log files (name of the app is MKConsole, it's VERY handy) and I keep getting this error...
    "Jan 10 20:19:36 G4-Server servermgrd: servermgr_dns: no name available via DNS for 192.168.1.10
    Jan 10 20:19:36 G4-Server servermgrd: servermgr_dns: no hostname set and unable to detect via DNS, services may not function properly - use changeip to repair"
    I have tried using "chageip" and have done man changeip to see if I was missing anything but I was not, and the problem persists. Does anyone know a way to fix this? I don't think it is a problem with the DNS Services, because I have tried turning DNS services off and it still came up woth the error.
    Thanks!

    The problem isn't necessarily with your server, but the DNS server that it uses.
    The server is trying to resolve its own IP address, so it's asking the DNS server for the reverse lookup of 192.168.1.10. The DNS server doesn't have a reverse entry for that IP, and that's why the server is complaining.
    Your fix is to make sure that your DNS is setup correctly, with correct reverse DNS for your server.

  • I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    This may sound crazy, but download any free app.  This often "shocks" the other apps into working.

  • Logging java errors to a text file, please help.

    Could someone please advise how to log java errors to a text file?
    I know from Window you can do to "ANY COMMAND > C:\log.txt and the output will send to the log.txt text file.
    However, how do you log errors when you run java filename? Wish I could just copy and paste from my Window command prompt screen.
    I am just trying to post the errors I receive to the forum.
    Thanks,

    user_s8721301 wrote:
    ..Wish I could just copy and paste from my Window command prompt screen.(from memory) Drag the mouse diagonally across the text in the DOS prompt, then hit 'enter'. The selected text should be on the clipboard, ready to paste.

  • THE DATABASE CONNECTION IS LOST :;; WIERD  ORA-01012 NOT LOGGED ON ERROR

    ERROR: ORA-01012 NOT LOGGED ON ERROR
    I AM USING A JAVA SWING INTERFACE (JDK 1.1.8), WHICH USES JNI TO CALL C PROGRAMS WHICH IN TURN CONNECTS TO THE DATABASE, ORACLE 8.1.6.
    A DATABASE CONNECTION IS ESTABLISED IN THE MAIN CLASS BY CALLING A FUNCTION FROM THE CONSTRUCTOR.
    FOR ALL OTHER FUNCTION CALLS WHICH ARE MADE FROM WITHIN THIS CONSTRUCTOR, THE CONNECTION STAYS.
    BUT AFTER THE CONTRUCTOR CALL IS COMPLETE, DATABASE CONNECTION IS STRANGELY LOST. THUS ALL OTHER FUNCTION CALLS FAIL BECAUSE OF CONNECTION ISSUES GIVING ORA-01012. THOUGH IF I CHECK UP IN THE DATABASE, THE CONNECTION DOES FIND AN ENTRY.
    SO IT APPEARS THAT SOMEHOW THE JAVA INTERFACE LOOSES TRACK OF CONNECTION. BUT STRANGELY ALL THE FUNCTIONS WORK IF CALLED FROM THE CONSTRUCTOR......... BUT THATS NOT THE IDEA.
    PLEASE HELP, THIS PROBLEM IS BUGGING ME FOR WEEKS NOW.
    THANKS
    AMIT

    apologise for the caps lock.
    i am working on a previous system with java swing front end which alread uses jni, and connects to database using pro *c.
    My problem is that the connection is lost as soon as the constructor of the main class is run, giving an
    ORA-1012 NOT LOGGED ON ERROR.
    But if i place the same calls in the contructor all the database call work.
    It somehow appears that the java interface looses the connection context. Though the session does find entry in the oracle dynamic tables as long as i dont close the front end main window, thereby meaning that its the jave interface which looses the context.
    part of the code of the main class eiquser.
    //constructor
    public EiqUser() {
         super();
         initMRI();
    private void initMRI() {
         try {
              /* initialize geoManager environment */
              int rccc = new EiqCfuncs().eiqInitEnv();
    //eiqinitenv is a c function which connects to database using pro *C
              EiqCfuncs cfuncs = new EiqCfuncs();
              //EiqCfuncs has the prototypes of c functions used bye the java interface
              this.ivjFileMenu.setText(cfuncs.eiqGetText(resNum.getTEXT_FILE_MENU())); // sets the menu name
    and so on.........
    public void eiqUser_WindowClosed(java.awt.event.WindowEvent windowEvent) {
         new EiqCfuncs().eiqTermEnv(); // gives ora-1012 error
    //eiqtermenv is supposed to disconnect from data base, but returns an ora-1012 not logged on erro
         return;
    //eiqtermenv closes the connection with the data base. But fails in this case. if i place the same call ( eiqtermenv) in the initMRI function or the contructor it succeeds.
    Plus if i dont use the java interace and use a c stub for executing the same sequence of functions, then i dont face any problems.
    the proc calls exectuted ultimately by...
    :::eiqinitenv
    exec sql connect using :sqlid identified by sqlpw; // succeeds giving sqlerr.sqlcode=0;
    ::::eiqterm env
    exec sql commit work; //fails giving 0ra-1012 error
    exec sql rollback work;
    Why is the java interface loosing track of the connection once done with the constructor of the main class?? The session still finds an entry in the oracle dynamic tables.
    Please help
    Thx
    Amit

  • Utl_http error help required

    Hi,
    Thanks for help,
    I create the following procedure for this purpose and i received the following errors:
    declare
         txt  Varchar2(4000);
          request   utl_http.req;
         response  utl_http.resp;
    BEGIN
         utl_http.set_proxy('','');
          request := utl_http.begin_request('http://localhost:7778/reports/rwservlet?report=f:\oracle\TIS13.rdf&desformat=pdf&destype=cache&userid=wh1/wh1@dwh');
         --utl_http.set_header(request, 'User-Agent', 'Mozilla/4.0');
            response := utl_http.get_response(request);
         LOOP
         utl_http.read_line(response, txt, TRUE);
         dbms_output.put_line(txt);
         END LOOP;
          utl_http.end_response(response);
    EXCEPTION
         WHEN utl_http.end_of_body THEN
              utl_http.end_response(response);
    WHEN OTHERS THEN
           -- Consider logging the error and then re-raise
           RAISE;
    end;ERROT AT line1:
    ORA-29273: HTTP request failed
    ORA-06512" at "SYS.UTL_HTTP",line 1231
    ORA-29276: transfer timout
    ORA-06512: at line 20
    Any solution would be hightly appriciated
    Regards

    it would be easier for you to use the OOTB Reports integration with Portal:
    - http://download.oracle.com/docs/cd/B14099_19/bi.1012/b14048/pbr_portal.htm#i1008279
    Cheers,
    Mick

  • While Installation of 11g database creation time error ORA-28056: Writing audit records to Windows Event Log failed Error

    Hi Friends,
    OS = Windows XP 3
    Database = Oracle 11g R2 32 bit
    Processor= intel p4 2.86 Ghz
    Ram = 2 gb
    Virtual memory = 4gb
    I was able to install the oracle 11g successfully, but during installation at the time of database creation I got the following error many times and I ignored it many times... but at 55% finally My installation was hanged nothing was happening after it..... 
    ORA-28056: Writing audit records to Windows Event Log failed Error  and at 55% my Installation got hung,,,, I end the installation and tried to create the database afterward by DBCA but same thing happened....
    Please some one help me out, as i need to install on the same machine .....
    Thanks and Regards

    AAP wrote:
    Thanks Now I am able to Create a database , but with one error,
    When I created a database using DBCA, at the last stage I got this error,
    Database Configuration Assistant : Warning
    Enterprise Manager Configuration Failed due to the Following error Listener is not up or database service is not registered with it.  Start the listener & Registered database service & run EM Configuration Assistant again....
    But when I checked the listener was up.....
    Now what was the problem,  I am able to connect and work through sqlplus,
    But  I didnt got the link of EM and when try to create a new connection in sql developer it is giving error ( Status : failure - Test Failed the Network Adapter could not establish the connection )
    Thanks & Regards
    Creation of the dbcontrol requires a connection via the listener.  When configuring the dbcontrol as part of database creation, it appears that the dbcontrol creation step runs before the dynamic registration of the databsase with the listener is complete.  Now that the database itself is completed and enough time (really, just a minute or two) has passed to allow the instance to register, use dbca or emca to create the dbcontrol.
    Are you able to get a sqlplus connection via the listener (sqlplus scott/tiger@orcl)?  That needs to be the first order of business.

  • ORA-00333: redo log read error block

    ORA-01033: ORACLE initialization or shutdown in progress ...
    / as sysdba
    SQL> shutdown immediate;
    SQL> startup nomount;
    SQL> alter database mount;
    SQL> alter database open;
    ORA-00333: redo log read error block 8299 count 8192
    SQL> SELECT * FROM V$VERSION;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> select group#,members,THREAD, STATUS,ARCHIVED,BYTES,FIRST_TIME,FIRST_CHAGE#,SEQUENCE# from v$log;
    GROUP# MEMBERS,THREAD,STATUS,ARCHIVED,BYTES,FIRST_TIME,FIRST_CHAGE#,SEQUENCE#
    1 1 1 CURRENT NO 52428800 29-FEB-12 1597643 57
    2 1 1 INACTIVE NO 52428800 29-FEB-12 1573462 56
    Dump file c:\oraclexe\app\oracle\admin\xe\bdump\alert_xe.log
    Wed Feb 29 19:46:38 2012
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 56 Reading mem 0
    Mem# 0 errs 0: C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_7LZYZK8S_.LOG
    Wed Feb 29 19:46:40 2012
    Completed redo application
    Wed Feb 29 19:46:40 2012
    Completed crash recovery at
    Thread 1: logseq 56, block 6568, scn 1597642
    270 data blocks read, 270 data blocks written, 1460 redo blocks read
    Wed Feb 29 19:46:43 2012
    Thread 1 advanced to log sequence 57
    Thread 1 opened at log sequence 57
    Current log# 2 seq# 57 mem# 0: C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_7LZYZL5V_.LOG
    Successful open of redo thread 1
    Wed Feb 29 19:46:43 2012
    SMON: enabling cache recovery
    Wed Feb 29 19:46:55 2012
    Successfully onlined Undo Tablespace 1.
    Wed Feb 29 19:46:55 2012
    SMON: enabling tx recovery
    Wed Feb 29 19:46:56 2012
    Database Characterset is AL32UTF8
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=19, OS id=3024
    Wed Feb 29 19:47:09 2012
    Completed: alter database open
    Wed Feb 29 19:47:14 2012
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Wed Feb 29 20:33:30 2012
    MMNL absent for 1537 secs; Foregrounds taking over
    Wed Feb 29 20:33:31 2012
    MMNL absent for 1540 secs; Foregrounds taking over
    Wed Feb 29 20:33:31 2012
    MMNL absent for 1540 secs; Foregrounds taking over
    MMNL absent for 1540 secs; Foregrounds taking over
    Wed Feb 29 20:33:32 2012
    MMNL absent for 1540 secs; Foregrounds taking over
    Wed Feb 29 20:33:33 2012
    MMNL absent for 1540 secs; Foregrounds taking over
    Wed Feb 29 21:45:24 2012
    MMNL absent for 4318 secs; Foregrounds taking over
    MMNL absent for 4318 secs; Foregrounds taking over
    MMNL absent for 4322 secs; Foregrounds taking over
    Dump file c:\oraclexe\app\oracle\admin\xe\bdump\alert_xe.log
    Wed Feb 29 22:30:01 2012
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows XP Version V5.1 Service Pack 3, v.3244
    CPU : 2 - type 586, 2 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:3097M/3546M, Ph+PgF:5143M/5429M, VA:1943M/2047M
    Wed Feb 29 22:30:01 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    __shared_pool_size = 201326592
    __large_pool_size = 8388608
    __java_pool_size = 4194304
    __streams_pool_size = 0
    spfile = C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DBS\SPFILEXE.ORA
    sga_target = 805306368
    control_files = C:\ORACLEXE\ORADATA\XE\CONTROL.DBF
    __db_cache_size = 587202560
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oraclexe\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    local_listener = (ADDRESS=(PROTOCOL=TCP)(HOST=winsp3ue)(PORT=1522))
    job_queue_processes = 4
    audit_file_dest = C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLEXE\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLEXE\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLEXE\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 268435456
    PMON started with pid=2, OS id=2176
    PSP0 started with pid=3, OS id=2204
    MMAN started with pid=4, OS id=2208
    DBW0 started with pid=5, OS id=2212
    LGWR started with pid=6, OS id=2220
    CKPT started with pid=7, OS id=2240
    SMON started with pid=8, OS id=2460
    RECO started with pid=9, OS id=2464
    CJQ0 started with pid=10, OS id=2480
    MMON started with pid=11, OS id=2484
    Wed Feb 29 22:30:02 2012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=2492
    Wed Feb 29 22:30:02 2012
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Wed Feb 29 22:30:02 2012
    alter database mount exclusive
    Wed Feb 29 22:30:06 2012
    Setting recovery target incarnation to 2
    Wed Feb 29 22:30:06 2012
    Successful mount of redo thread 1, with mount id 2657657770
    Wed Feb 29 22:30:06 2012
    Database mounted in Exclusive Mode
    Completed: alter database mount exclusive
    Wed Feb 29 22:30:07 2012
    alter database open
    Wed Feb 29 22:30:07 2012
    Beginning crash recovery of 1 threads
    Wed Feb 29 22:30:07 2012
    Started redo scan
    Wed Feb 29 22:30:15 2012
    Errors in file c:\oraclexe\app\oracle\admin\xe\udump\xe_ora_2544.trc:
    ORA-00333: redo log read error block 10347 count 6144
    ORA-00312: online log 2 thread 1: 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_7LZYZL5V_.LOG'
    ORA-27070: async read/write failed
    OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 23) Data error (cyclic redundancy check).
    Waiting for Help
    Regards

    Errors in file c:\oraclexe\app\oracle\admin\xe\udump\xe_ora_2544.trc:
    ORA-00333: redo log read error block 10347 count 6144
    ORA-00312: online log 2 thread 1: 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_7LZYZL5V_.LOG'
    ORA-27070: async read/write failed
    OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 23) Data error (cyclic redundancy check).Might your redo log file is corrupted or not exist, check physically. -> C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_7LZYZL5V_.LOG
    is it archivelog mode?
    perform fake recovery and open resetlogs.

  • Https log in error

    Hi experts
    i'd like to know how is possible to solve this log-in error
    No switch to HTTPS occurred, so it is not secure to send a password Client, name, or password is not correct; log on again
    Regards
    andrea

    Hi Andrea,
    go to
    - TA SICF
    - select the service where you are facing the message (e.g. BBPSTART)
    - tab "logon data"
    - change the "security requirement" to SSL
    This should help.
    Best regards,
    Georg

  • FaceTime and Messages log in error on Mac

    FaceTime and Messages log in error on my iMac and Mac Mini.  (OS X 10.8.2)
    Getting a 'registration cannot be completed at this time message', but both worked fine before (when the iMac was in my office). 
    Both FaceTime and iMessage work on the iPad.
    Running the home network through a near-new, still functioning Time Capsule.
    Have logged out, tried logging in with a new Apple ID, and get the same result.
    Help, please.

    Sorry, I'm at a loss...
    Try Apple's Express Lane...
    https://expresslane.apple.com/

  • ORA-00333: redo log read error block 283081 count 8192

    I am starting the database..it mount but after that it gives me this error
    ORA-00333: redo log read error block 283081 count 8192
    Below are the contents of alert Log.._Please advice_
    Completed: ALTER DATABASE MOUNT
    Tue Jan 20 10:24:45 2009
    ALTER DATABASE OPEN
    Tue Jan 20 10:24:45 2009
    Beginning crash recovery of 1 threads
    parallel recovery started with 2 processes
    Tue Jan 20 10:24:45 2009
    Started redo scan
    Tue Jan 20 10:25:00 2009
    Errors in file /d01/oracle/PROD1/db/tech_st/10.2.0/admin/PROD1_prod1/udump/prod1_ora_32356.trc:
    ORA-00333: redo log read error block 283081 count 8192
    ORA-00312: online log 2 thread 1: '/d01/oracle/PROD1/db/apps_st/data/log02a.dbf'
    ORA-27072: File I/O error
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 4
    Additional information: 283081
    Additional information: 257536
    Tue Jan 20 10:25:16 2009
    Errors in file /d01/oracle/PROD1/db/tech_st/10.2.0/admin/PROD1_prod1/udump/prod1_ora_32356.trc:
    ORA-00333: redo log read error block 283081 count 8192
    ORA-00312: online log 2 thread 1: '/d01/oracle/PROD1/db/apps_st/data/log02a.dbf'
    ORA-27091: unable to queue I/O
    ORA-27072: File I/O error
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 4
    Additional information: 283081
    Additional information: 257536
    Tue Jan 20 10:25:31 2009

    I did what Prabhu told me..But i recovered using backup controlfile and when i was asked to apply logs..i applied my oldest logs and it worked
    Like i have two groups with two members each
    I applied log1a.dbf and it said media recovery completee
    I opened the database But then it started giving me errors for undo tablespace
    I made another undo tablespace..tried dropping the old one but it did not permitted as it had some segments with status "needs recovery"
    Than i added this parameter in pfile with the correupted segment and than tried to drop the segment but it still did not permit
    corruptedrollback_segments =(corrupted_undo segment_name)
    Next what i did was I mounted the database, ran another session of media recovery and opened the databse using resetlogs
    Than i dropped the old undo and it went through successfully..
    If you think anything i did wrong than please advice..
    I hope this action plans helps you in case you come across same errors some day
    I would be very thankful if you can refer me a document of recovery which covers all kinds of recoveries and scenarios and commands too
    Thanks alot

  • ORA-00333: redo log read error block 65538 count 8192

    Hi,
    I wanted to alter user hr's password, but I couldn't open the database first. What should I do? Here is my demo: Thank you for your response.
    C:\>sqlplus /nolog
    SQL*Plus: Release 9.2.0.1.0 - Production on Sun May 16 12:12:43 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    SQL> connect sys/oracle as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> select * from v$controlfile;
    STATUS
    NAME
    C:\ORACLE\ORADATA\SARAH\CONTROL01.CTL
    C:\ORACLE\ORADATA\SARAH\CONTROL02.CTL
    C:\ORACLE\ORADATA\SARAH\CONTROL03.CTL
    SQL> select * from dba_users;
    select * from dba_users
    ERROR at line 1:
    ORA-01219: database not open: queries allowed on fixed tables/views only
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-00333: redo log read error block 65538 count 8192
    SQL> desc v$instance
    Name Null? Type
    INSTANCE_NUMBER NUMBER
    INSTANCE_NAME VARCHAR2(16)
    HOST_NAME VARCHAR2(64)
    VERSION VARCHAR2(17)
    STARTUP_TIME DATE
    STATUS VARCHAR2(12)
    PARALLEL VARCHAR2(3)
    THREAD# NUMBER
    ARCHIVER VARCHAR2(7)
    LOG_SWITCH_WAIT VARCHAR2(11)
    LOGINS VARCHAR2(10)
    SHUTDOWN_PENDING VARCHAR2(3)
    DATABASE_STATUS VARCHAR2(17)
    INSTANCE_ROLE VARCHAR2(18)
    ACTIVE_STATE VARCHAR2(9)
    SQL> select instance_name, status from v$instance;
    INSTANCE_NAME STATUS
    sarah MOUNTED
    SQL>
    *******************************

    I did what Prabhu told me..But i recovered using backup controlfile and when i was asked to apply logs..i applied my oldest logs and it worked
    Like i have two groups with two members each
    I applied log1a.dbf and it said media recovery completee
    I opened the database But then it started giving me errors for undo tablespace
    I made another undo tablespace..tried dropping the old one but it did not permitted as it had some segments with status "needs recovery"
    Than i added this parameter in pfile with the correupted segment and than tried to drop the segment but it still did not permit
    corruptedrollback_segments =(corrupted_undo segment_name)
    Next what i did was I mounted the database, ran another session of media recovery and opened the databse using resetlogs
    Than i dropped the old undo and it went through successfully..
    If you think anything i did wrong than please advice..
    I hope this action plans helps you in case you come across same errors some day
    I would be very thankful if you can refer me a document of recovery which covers all kinds of recoveries and scenarios and commands too
    Thanks alot

  • Toolbox log with errors

    The Toolbox did it's monthly hardware check today. The following errors were logged. Please help me understand what they mean and how to fix them. Thanks.
    I am running WinVista x64 Ultimate on a Thinkpad W700ds with a solid state hard disk (which means it may not be an ATA device).
    pcdrharddrive_8072.log
    (13:07:00:6980)(8072) libAtaInfo - Error -- 926 Could not initialize ATA Device
    pcdrharddrive_7528.log
    (13:07:31:1670)(7528) libAtaInfo - Error -- 926 Could not initialize ATA Device
    pcdrharddrive_3332.log
    (13:05:49:5440)(3332) libAtaInfo - Error -- 926 Could not initialize ATA Device
    pcdrharddrive_7600.log
    (13:08:13:1710)(7600) libAtaInfo - Error -- 926 Could not initialize ATA Device
    pcdrsysinfosoftware_5516.log
    (09:00:18:9790)(5516) dapi5.ModuleCommon - Error -- 1482 createDeviceProperty(): A property with key = Name already exists in this module, this property type, category, and datatype WILL HAVE NO EFFECT!
    pcdrsysinfosoftware_6000.log
    (13:00:48:0970)(6000) dapi5.ModuleCommon - Error -- 1482 createDeviceProperty(): A property with key = Name already exists in this module, this property type, category, and datatype WILL HAVE NO EFFECT!
    pcdrrealtime_7840.log
    (09:00:41:2270)(7840) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (09:01:11:2280)(7840) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (09:01:41:2270)(7840) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    pcdrrealtime_6932.log
    (13:00:59:2880)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (13:01:29:2940)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (13:01:59:2930)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (13:02:29:3030)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.google.com had an error: Internet access is not allowed
    (13:02:59:3020)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.microsoft.com had an error: Internet access is not allowed
    (13:03:29:3070)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (13:03:59:3060)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (13:04:29:3050)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.google.com had an error: Internet access is not allowed
    (13:04:59:3040)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.microsoft.com had an error: Internet access is not allowed
    (13:05:29:3070)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (13:05:59:3060)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (13:06:29:3050)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.google.com had an error: Internet access is not allowed
    (13:06:59:3050)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.microsoft.com had an error: Internet access is not allowed
    (13:07:29:3040)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (13:07:59:3140)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed
    (13:08:29:3130)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.google.com had an error: Internet access is not allowed
    (13:08:59:3120)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.microsoft.com had an error: Internet access is not allowed
    (13:09:29:3280)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://www.yahoo.com had an error: Internet access is not allowed
    (13:09:59:3160)(6932) dapi5.Comm.Engine - Error -- 679 HTTP request to http://pcdlnvmsg-proxy.s3.amazonaws.com/net.txt had an error: Internet access is not allowed

    A message appeared to upgrade to 6.0.5514.60 from 6.05514.55.  "Upgrade in progress" was on the screen and a message box canme on that asked to download the upgrade.  Then it came back with the message "Connection lost".  I retried this a few times making sure i was on line with IE8-it was throuch Access Connection. Norton 360 is the virus protection, which was turned off to see if it would allow the upgrade -  no change in the messsage.  TP is 6371-CTO, T60, Windows Vista Home Premium with latest updates,  32  bit. 2 gb
    Does anyone have an idea of how to have it update PC Doctor, which has been working fine at version6. xxx.55.
    If it ain't broke, don't mess with it!
    Here are the details of the error message about "lost connection"
    ************** Exception Text **************
    System.IO.IOException: The process cannot access the file 'C:\Users\XXXX XXXX\AppData\Roaming\Update\patch_551455to551460_3​2\patch_551455to551460_32.02.exe.000' because it is being used by another process.<<<<I TRIED IT WITH PC DOCTOR OPEN AND ALSO CLOSED
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.ReadAllBytes(String path)
       at appupdater.utility.DownloadLargeFileCacheManager.V​erifyExistingChunkData(UIBuildIDStatusData installedBuildID)
       at appupdater.utility.ChunkFileManager..ctor(UIBuildI​DStatusData statusData)
       at appupdater.formcontrols.download.DownloadRowContro​l..ctor(String formatString, Int32 percentComplete, String localAppName, Image appImage, String buildID, UIBuildIDStatusData uid)
       at appupdater.formcontrols.download.DownloadProgressB​ody.LoadForm()
       at appupdater.formcontrols.download.DownloadProgressB​ody..ctor()
       at appupdater.controllers.AppController.Action(ViewSt​ates v)
       at appupdater.formcontrols.download.DownloadProgressF​ooter.btnRetry_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventAr​gs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.O​nMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.W​ndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4200 (NetFxQFE.050727-4200)
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50​727/mscorlib.dll
    appupdater
        Assembly Version: 1.0.5514.52
        Win32 Version: 1.0.5514.52
        CodeBase: file:///C:/Program%20Files/PC-Doctor/updater/appup​dater.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Window​s.Forms/2.0.0.0__b77a5c561934e089/System.Windows.F​...
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawin​g/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Config​uration/2.0.0.0__b03f5f7f11d50a3a/System.Configura​...
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.​0.0.0__b77a5c561934e089/System.Xml.dll
    h98qep3e
        Assembly Version: 1.0.5514.52
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    bfxa0cze
        Assembly Version: 1.0.5514.52
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    9btygw2-
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    i5eaxi51
        Assembly Version: 1.0.5514.52
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    DiskSpaceCheck
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Users/xxxxxxx/AppData/Local/Temp/appupd​ater/2010-06-14%2004-23-59/rules/DiskSpaceCheck/Di​...
    3pgo3rh5
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    fthli1qc
        Assembly Version: 1.0.5514.52
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    DotNet35Sp1Check
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Users/xxxxxxxxx/AppData/Local/Temp/appu​pdater/2010-06-14%2004-24-01/rules/DotNet35Sp1Chec​...
    eqid5f1v
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.​0__b77a5c561934e089/System.dll
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    EDIT-  removed name from links
    T60: 6371-CTO, VISTA Home Premium+SP1, 2GB....R51: 1836-Q4U,XP,1GB...600...755CD

  • Change log format error

    I've been syncing three computers and my iPod with no problem for years. I've just had my G4 iMac monitor replaced, and ever since when I try to sync this machine I get the message "change log format error INTERNAL ERROR: unhandled error (change log format error)" and I can't sync. Any help would be appreciated.
    G4 iMac   Mac OS X (10.3.9)  

    Yes, you just need to add the option -showdate into the ttendaemon.options file.
    </p>
    Please check out the section on Modifying informational messages in the Operations Guide.
    </p>
    Simon

  • [svn] 1366: BLZ-136 log an error and return no properties when IntrospectionException occurs when introspecting a value object

    Revision: 1366
    Author: [email protected]
    Date: 2008-04-23 14:45:47 -0700 (Wed, 23 Apr 2008)
    Log Message:
    BLZ-136 log an error and return no properties when IntrospectionException occurs when introspecting a value object
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-136
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/BeanProxy.java

    Hi,
    Please apply the following correction manually.
    1. Go to transaction ST03N
    2. Change user from 'Administrator' to 'Expert Mode'.
    3. Go to Collector and performance analysis -> Performance database
       -> Monitoring database -> Contents
    4. Search where further info contains the string "h/2"
    like the following monikeys:
      - 'days  h/2'
      - 'weeks  h/2'
      - 'months  h/2'  
    5. Double click on each, so that they become red and show ** delete
    6. Finally SAVE
    This will remove the corresponding database related history up to the deletion date. It will accumulate anew afterwards.
    How can I identify the monikey that has to be deleted?
    When you load the text of the dump and then jump off to the break point of the debugger you may find the error break point look like:
    "IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY".
    To find the right monikey entry causing the dump you can search for the word 'MONIKEY' within the text of the dump. This can be 'days  h/3' or
    'tabgrowth  2'...
    You can then go back to the procedure above and search where further info contains the monikey that you found in the text of the dump.
    997535     DB02: Problems with History Data.
    Award points if helpful.
    Thanks,
    Tanuj

Maybe you are looking for

  • Help needed in "BADI_CCM_NOTIF_GENER"

    "BADI_CCM_NOTIF_GENER", i already created its new implementation, and in the method create , i have two fields .....Notification number and order number. Now i have to update QMEl table ( in its custom appended fields) these two value. This method ha

  • P45D3 Platinum boot error

    Can't boot my computer. MemoryDetectionTest - error message. Components: Corsair Powersupply 550W Black, ATX/EPS, 120mm Fan, 4xSATA, SLI, WxHxL Corsair TWIN3X 1333MHz DDR3, 4GB, DHX, Kit w/two 2GB XMS3 modules, CL9-9-9-24 HIS Radeon HD 4850 512MB GDD

  • IPad Restore Error

    I recently purchased a new iPad from overseas and had my friend install applications on it via his itunes on his computer. It was working fine until my kids (2-3 years old) set a passcode while they were playing with it and I can no longer access to

  • Dead Macbook Pro while abroad in Italy for work

    Hello! My love-hate relationship with Mac computers goes on as usual. After a disaster with a Macbook, I got a Macbook pro (15") in November 2007. I bought AppleCare to make sure I had no problems with this computer. I went onto having a pro computer

  • Has anyone ever "lost" their library and all their playlists??

    When I first looked at my library today, all the songs (I have about 300 on my nano) were gone!!!! How can I get them back? I am worried that if I sync my Ipod I'll loose them for good!