Sys locked ?

Hello.
How can I interpret this ?:
bash-3.2$ sqlplus sys/correct_pwd@db1
SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 11 08:53:52 2011
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
ERROR:
ORA-28000: the account is locked
Enter user-name:
bash-3.2$
bash-3.2$ sqlplus sys/wrong_passwd@db1 as sysdba;
SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 11 08:54:20 2011
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
ERROR:
ORA-01017: invalid username/password; logon denied
Enter user-name:
bash-3.2$ sqlplus sys/correct_passwd@db1 as sysdba
SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 11 08:54:43 2011
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL>
SQL> select username,account_status
            from dba_users
            where username in ('SYS','SYSTEM','SCOTT');  2    3
USERNAME                       ACCOUNT_STATUS
SYSTEM                         EXPIRED(GRACE) & LOCKED
SYS                            LOCKED
SQL> select * from V$PWFILE_USERS;
USERNAME                       SYSDB SYSOP SYSAS
SYS                            TRUE  TRUE  FALSE ?

you cannot log into database with "SYS" user without specifying the sysdba privileges . SYS is default users, created with the creation of the database. Although they have much power - as they are granted the DBA role - they're still ordinary users. Because SYS owns the data dictionary, (s)he is considered a bit more special .
Here you can unlock the sys account as
>
C:\>sqlplus system/xxxx@noida
SQL*Plus: Release 11.2.0.1.0 Production on Fri Nov 11 14:30:05 2011
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter user sys account unlock;
User altered.
>
Refer the below links :
http://neeraj-dba.blogspot.com/2011/03/sys-user.html
--neeraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • SYS and SYSTEM user password expired

    My 11g2 database on Redhat 5 has sys and system user password expiredSQL> select username,account_status,EXPIRY_DATE
    from dba_users where username like 'SYS%';
      2
    USERNAME                       ACCOUNT_STATUS                   EXPIRY_DA
    SYSMAN                         OPEN
    SYSTEM                         OPEN                             15-FEB-11
    SYS                            OPEN                             15-FEB-11But I can still connect the databsae with t expired password.
    Do I need worry about the expiration of these user's password? For a normal user, I connot login with expired password

    Dear user13148231,
    Here is an illustration;
    SQL> alter user sys account lock;
    User altered.
    SQL> select username, account_status, lock_date, expiry_date from dba_users where USERNAME='SYS';
    USERNAME                      ACCOUNT_STATUS                   LOCK_DATE EXPIRY_DA
    SYS                                      LOCKED                           20-AUG-10      23-FEB-09
    SQL> host sqlplus sys/password@opttest as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri Aug 20 12:25:43 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> alter user sys identified by password password expire;
    User altered.
    SQL> select username, account_status, lock_date, expiry_date from dba_users where username='SYS';
    USERNAME                      ACCOUNT_STATUS                   LOCK_DATE EXPIRY_DA
    SYS                                EXPIRED & LOCKED                 20-AUG-10   20-AUG-10
    SQL> host sqlplus sys/password@opttest as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri Aug 20 12:27:02 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> alter user sys identified by password account unlock;
    SQL> select username, account_status, lock_date, expiry_date from dba_users where username='SYS';
    USERNAME                       ACCOUNT_STATUS                   LOCK_DATE EXPIRY_DA
    SYS                            OPENEven if it shows expired and locked it is OK to connect to the database for the SYS user.
    SQL> alter user ogan identified by password account lock password expire;
    User altered.
    SQL> select username, account_status, lock_date, expiry_date from dba_users where username='OGAN';
    USERNAME                       ACCOUNT_STATUS                   LOCK_DATE EXPIRY_DA
    OGAN                           EXPIRED & LOCKED                 20-AUG-10 20-AUG-10
    SQL> conn ogan/password
    ERROR:
    ORA-28000: the account is locked
    Warning: You are no longer connected to ORACLE.
    SQL> conn / as sysdba
    Connected.
    SQL> alter user ogan account unlock;
    User altered.
    SQL> conn ogan/password@opttest
    ERROR:
    ORA-28001: the password has expired
    Changing password for ogan
    New password:
    Retype new password:
    Password changed
    Connected.
    SQL>Ogan

  • File Locking using java.nio package

    I am trying to lock a file using FileChannel's lock method on a CIFS file system. My application is on windows and the CIFS is accessed using UNC format ( \\1.2.3.4\blah.. ). I get the following error
         java.io.IOException: The network request is not supported
         at sun.nio.ch.FileChannelImpl.lock0(Native Method)
         at sun.nio.ch.FileChannelImpl.lock(FileChannelImpl.java:750)
         at java.nio.channels.FileChannel.lock(FileChannel.java:865)
    From the same machine using the same UNC formatm, when I lock the file using windows C API, I can successfull lock.
    Anyone has any idea why JVM can not lock even using nio package. Shouldnt it use the same ( or similar ) API under the hood as its clear by the package name java.nio
    The C program I am using is
    #include <io.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <sys/locking.h>
    #include <share.h>
    #include <fcntl.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    void main( int argc, char **argv )
    int fh,numread;
    char buffer[40];
    char filename[500];
    /* Quit if can't open file or system doesn't
    * support sharing.
    if ( argc > 1 )
              strcpy(filename,argv[1]);
    else
              strcpy(filename,"locking.c");
    fh = sopen(filename , O_RDWR, SHDENYNO, //_SH_DENYRW,
    SIREAD | SIWRITE );
    if( fh == -1 )
    exit( 1 );
    /* Lock some bytes and read them. Then unlock. */
    if( locking( fh, LKNBLCK, 30L ) != -1 )
    printf( "No one can change these bytes while I'm reading them\n" );
    numread = _read( fh, buffer, 30 );
    printf( "%d bytes read: %.30s\n", numread, buffer );
    lseek( fh, 0L, SEEK_SET );
         printf( "Press a key to unlock the file.....\n" );
         getchar();
         locking( fh, LKUNLCK, 30L );
    printf( "Now I'm done. Do what you will with them\n" );
    else
    perror( "Locking failed\n" );
    _close( fh );
    }

    It uses LockFile and LockFileEx. Please check in the MSDN documentation the peculiarities of such APIs.
    JNIEXPORT jint JNICALL
    Java_sun_nio_ch_FileChannelImpl_lock0(JNIEnv *env, jobject this, jobject fdo,
                                          jboolean block, jlong pos, jlong size,
                                          jboolean shared)
        jint fd = fdval(env, fdo);
        HANDLE h = (HANDLE)_get_osfhandle(fd);
        DWORD lowPos = (DWORD)pos;
        long highPos = (long)(pos >> 32);
        DWORD lowNumBytes = (DWORD)size;
        DWORD highNumBytes = (DWORD)(size >> 32);
        jint result = 0;
        if (onNT) {
            DWORD flags = 0;
            OVERLAPPED o;
            o.hEvent = 0;
            o.Offset = lowPos;
            o.OffsetHigh = highPos;
            if (block == JNI_FALSE) {
                flags |= LOCKFILE_FAIL_IMMEDIATELY;
            if (shared == JNI_FALSE) {
                flags |= LOCKFILE_EXCLUSIVE_LOCK;
            result = LockFileEx(h, flags, 0, lowNumBytes, highNumBytes, &o);
            if (result == 0) {
                int error = GetLastError();
                if (error != ERROR_LOCK_VIOLATION) {
                    JNU_ThrowIOExceptionWithLastError(env, "Lock failed");
                    return sun_nio_ch_FileChannelImpl_NO_LOCK;
                if (flags & LOCKFILE_FAIL_IMMEDIATELY) {
                    return sun_nio_ch_FileChannelImpl_NO_LOCK;
                JNU_ThrowIOExceptionWithLastError(env, "Lock failed");
                return sun_nio_ch_FileChannelImpl_NO_LOCK;
            return sun_nio_ch_FileChannelImpl_LOCKED;
        } else {
            for(;;) {
                if (size > 0x7fffffff) {
                    size = 0x7fffffff;
                lowNumBytes = (DWORD)size;
                highNumBytes = 0;
                result = LockFile(h, lowPos, highPos, lowNumBytes, highNumBytes);
                if (result != 0) {
                    if (shared == JNI_TRUE) {
                        return sun_nio_ch_FileChannelImpl_RET_EX_LOCK;
                    } else {
                        return sun_nio_ch_FileChannelImpl_LOCKED;
                } else {
                    int error = GetLastError();
                    if (error != ERROR_LOCK_VIOLATION) {
                        JNU_ThrowIOExceptionWithLastError(env, "Lock failed");
                        return sun_nio_ch_FileChannelImpl_NO_LOCK;
                    if (block == JNI_FALSE) {
                        return sun_nio_ch_FileChannelImpl_NO_LOCK;
                Sleep(100);
        return sun_nio_ch_FileChannelImpl_NO_LOCK;
    }

  • Problem on upgrading the designer repository from v1.3.2 to Desig6

    Hi folks,
    I have a database 8.1.6 running on SunSolaris. I migrated a database instance from v 7.3.2 which has the designer repositories (DES v1.3.2). Now after migrating the database to V8.1.6, I tried upgrade the repository through the Admin Util of Designer6, I'm getting the error saying that I have not granted the EXECUTE on SYS.LOCK and SYS.PIPE to the install. The desiger owner has these privileges granted to them already. I also tried granting this explictily and tried things and it was again comming up with the same error. So could some one advice me of what to do to get away from this problem.
    I ran a log and got the following
    CKRAU71 File '..\..\dgsource\rmdgnst.cpp' at line:305 -TOOL STARTUP-CKRAU71
    ================================================================================
    Oracle Designer/2000 tool CKRAU71 starting at Friday, July 28, 2000 21:47:22
    ================================================================================
    Diagnostics File:'\des2000.log' Level:24
    Component Trace ''
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:213 -TRACE-Could not find DLL/executable to register it (awre60.dll).
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:213 -TRACE-Could not find DLL/executable to register it (rmdg60.dll).
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:213 -TRACE-Could not find DLL/executable to register it (cwg60.dll).
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:255 -TRACE-Registered : CW NLS Message DLL (English) Version 2.0.24.0.0 - Production
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:207 -TRACE-Could not find language DLL ckrau20l.dll to register it. Trying ckrau20.exe
    CKRAU71 File 'cwcver.cpp $Revision: 10.10 $' at line:213 -TRACE-Could not find DLL/executable to register it (ckrau20.exe).
    Is there some thing I'm forgetting to see. I check the entire directory and notice that there is no ckrau20.exe file in. Is it some thing that I have to look under patches or etc.
    -Sam

    To clarify, your index entries were in the database but NOT defined in Des 1.3.2 model? Because if they were in the model, then I'd look back at your intermediate migration definitions to make sure the indexes were still defined properly in there.
    In Des 2.1/6.0/6i/9i/10g, Indexes are a separate sub-element (SACs) for a Table Definition. They don't have to be associated with a key structure. And in newer database versions, a PK / UK has an implicit index constructed for it in the database, so Designer doesn't bother showing you the Index in the model. Just the PK or UK itself (again, these are also separate SACs).
    And it's not clear where you're getting the error. During the generate? Or during the instantiation into a database? Neither situation is a common fault.

  • Vid card issues I think??

    Good day, I'm having some major issues with my card "I think"
    When playing MOH Pacific Assault, Battlefield Vietnam, and Doom3 my sys locks up and/or I get major video corruption. I have tried updating all of the drivers forward and backward and no luck  . One error that I get says that the Vid card got stuck in a loop. I have gone to the Nvida and EA site and no help. The only thing that I found was that their is a known issue with MOB running with Nforce 3 chips and to uninstall the GART driver "No idea how???" Here is the post on that, some of it doesn't apply (ATI, Punk Buster,
    "This combination of hardware has been reported to freeze gameplay, and is due to a combination of these hardware elements. Resolving this issue has become a stalemate between ATI, Nvidia and Evenbalance. Here is some information which may help you address this issue:
    Problem does not occur on non-Punkbuster servers.
    This problem seems specific to WinXP.
    Removal of the Nvidia GART Driver clears this problem up.
    Reverting to ATI's 3.9 seems to clear this up for some.
    Reducing the AGP aperture size reduces the amount of delay.
    Decreasing the PB scan frequency with pb_sleep decreases the frequency of the freezes.
    Changing from an ATI to Nvidia card seems to have eliminated problems for many users."
    Any idaes???? Thanks..

    Quote from: MrBigA on 11-February-05, 22:55:20
    Hi,
    I wouldn't remove the GART driver.  I have a NF3/6800 Ultra OC setup and I disabled fastwrites in my system bios to resolve loops and freezes.  The combo works wonders now!
    Good Luck,
    You want to try the easiest solutions first and turning off fast writes would be a good place to start as suggested. If it is not implemented properly it can cause instability.
    There are also a few other settings that should be in there you can try messing with such as AGP Aperture, 4X or 8X...etc.
    I also would use 3DMark 2001 as a stability test. It pretty much runs with every video card and drivers out there. Using a game might not be a good idea because a lot of games have problems with certain drivers or certain cards. At least if it passed 3DMark you would have some idea its not the drivers, card or even gart.
    If it doesn't pass 3DMark then I would start looking at your motherboard drivers (GART). The chance of 3DMark not working with any version of Nvidia drivers is very slim unless they are corrupted.
    To uninstall the GART you would go into device manager and right click it and uninstall. Windows will restart and try to install drivers on it's own. You can cancel it by clicking on the icon in the system tray if your quick enough. (WinXP)
    Another way to do it, is just updating the drivers by again going into device manager, right clicking and this time picking update drivers.
    You should have the drivers you want to use on the computer somewhere like maybe the desktop.
    Another thing you can try is reinstaling DirectX, that is one of those easy things that doesn't hurt anything to try. Also make sure your video card is not overheating in the case. Open the case and have a house fan blowing on it while you try 3DMark or playing a game.
    One last thing when you look in device manager the GART might not be listed as GART, at least on my NF7-S it is not listed that way. The GART would be anything related to AGP under "System Devices"

  • Bug Generated in NT 4.0 sp 5

    I recently installed Oracle Forms 6i and Reports 6i. Now though not all the time when I am logging off my workstation (standalone not on a network)the system crashes to the dreaded blue screen to preform a physical dump and the sys locks up causing me to have to hit the computers reset button. When I look at the Event Viewer in Administrative Tools is see the following entry for this event: Event Viewer - System Log on \\NTWKS 6/5/00
    The computer has rebooted from a bugcheck. The bugcheck was: 0x0000000a (0x05010055, 0x00000002, 0x00000000, 0x80129df7). Microsoft Windows NT [v15.1381]. A full dump was not saved.
    Has anyone else discovered this problem after installing Oracle Forms 6i and Reports 6i.
    Thanks,
    Glenn

    To quote Metalink Note 161818.1 (Oracle Server (RDBMS) Releases Support Status Summary)
    "Terminology Used in this Article
    Patch Set
    *Patch sets are cumulative. For example, 10.1.0.4 includes all the fixes in 10.1.0.3 as well as new fixes for 10.1.0.4.*      "

  • AUR - dependency makepkg issue

    Hi all,
    I'm trying to compile and install ncl from AUR (using packer). All dependencies check out fine, however there is an issue while building vis5d+. I've downloaded the patch from the Sources section (provides a PKGBUILD and the patch), following is the output of makepkg:
    > makepkg
    patching file src/misc.c
    patching file src/misc.h
    patching file src/work.c
    patching file util/kludge.f
    patch unexpectedly ends in middle of line
    Hunk #1 succeeded at 51 with fuzz 1.
    checking for a BSD compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for mawk... no
    checking for gawk... gawk
    checking whether make sets ${MAKE}... yes
    checking for vendor's cc to be used instead of gcc... checking for cc... cc
    checking for C compiler default output... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for executable suffix...
    checking for object suffix... o
    checking whether we are using the GNU C compiler... yes
    checking whether cc accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of cc... gcc3
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking for a BSD compatible install... /usr/bin/install -c
    checking whether make sets ${MAKE}... (cached) yes
    checking whether ln -s works... yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for ld used by GCC... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking how to recognise dependant libraries... file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )
    checking command to parse /usr/bin/nm -B output... ok
    checking how to run the C preprocessor... cc -E
    checking for dlfcn.h... yes
    checking for file... /usr/bin/file
    checking for ranlib... ranlib
    checking for strip... strip
    checking for objdir... .libs
    checking for cc option to produce PIC... -fPIC
    checking if cc PIC flag -fPIC works... yes
    checking if cc static flag -static works... yes
    checking if cc supports -c -o file.o... no
    checking if we can lock with hard links... yes
    checking if cc supports -fno-rtti -fno-exceptions... yes
    checking whether the linker (/usr/bin/ld) supports shared libraries... yes
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking if libtool supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    creating libtool
    checking for libintl.h... yes
    checking for ranlib... (cached) ranlib
    checking for strerror in -lcposix... no
    checking for ANSI C header files... yes
    checking for cc option to accept ANSI C... none needed
    checking for an ANSI C-conforming const... yes
    checking for inline... inline
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for off_t... yes
    checking for size_t... yes
    checking for working alloca.h... yes
    checking for alloca... yes
    checking for stdlib.h... (cached) yes
    checking for unistd.h... (cached) yes
    checking for getpagesize... yes
    checking for working mmap... yes
    checking whether we are using the GNU C Library 2.1 or newer... yes
    checking for argz.h... yes
    checking for limits.h... yes
    checking for locale.h... yes
    checking for nl_types.h... yes
    checking for malloc.h... yes
    checking for stddef.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for unistd.h... (cached) yes
    checking for sys/param.h... yes
    checking for feof_unlocked... yes
    checking for fgets_unlocked... yes
    checking for getcwd... yes
    checking for getegid... yes
    checking for geteuid... yes
    checking for getgid... yes
    checking for getuid... yes
    checking for mempcpy... yes
    checking for munmap... yes
    checking for putenv... yes
    checking for setenv... yes
    checking for setlocale... yes
    checking for stpcpy... yes
    checking for strchr... yes
    checking for strcasecmp... yes
    checking for strdup... yes
    checking for strtoul... yes
    checking for tsearch... yes
    checking for __argz_count... yes
    checking for __argz_stringify... yes
    checking for __argz_next... yes
    checking for iconv... yes
    checking for iconv declaration...
    extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
    checking for nl_langinfo and CODESET... yes
    checking for LC_MESSAGES... yes
    checking whether NLS is requested... yes
    checking whether included gettext is requested... no
    checking for libintl.h... (cached) yes
    checking for GNU gettext in libc... yes
    checking for dcgettext... yes
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for xgettext... /usr/bin/xgettext
    checking for bison... bison
    checking version of bison... 3.0.2, ok
    checking for catalogs to be installed... pt_BR es
    checking for db2html... ../missing db2html
    checking for db2dvi... ../missing db2dvi
    checking for db2ps... ../missing db2ps
    checking for db2pdf... ../missing db2pdf
    checking for db2rtf... ../missing db2rtf
    checking for convert... /usr/bin/convert
    checking for f77... gfortran
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether gfortran accepts -g... yes
    checking how to get verbose linking output from gfortran... -v
    checking for Fortran 77 libraries... -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2 -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2/../../.. -lgfortran -lm -lgcc_s -lquadmath
    checking for dummy main to link with Fortran 77 libraries... none
    checking for Fortran 77 name-mangling scheme... lower case, underscore, no extra underscore
    checking whether we are using gcc 2.90 or later... yes
    checking for float... yes
    checking size of float... 4
    checking for int... yes
    checking size of int... 4
    checking for signed char... yes
    checking size of signed char... 1
    checking whether byte ordering is bigendian... no
    checking for sqrt in -lm... yes
    checking for strcasecmp... (cached) yes
    checking for strncasecmp... yes
    checking for strdup... (cached) yes
    checking for X... libraries /usr/lib64, headers
    checking for gethostbyname... yes
    checking for connect... yes
    checking for remove... yes
    checking for shmat... yes
    checking for IceConnectionNumber in -lICE... yes
    checking for glBegin in -lMesaGL... no
    checking for glBegin in -lGL... yes
    checking for gluProject in -lGLU... yes
    checking for GL/gl.h... yes
    checking for XMesaGetBackBuffer... no
    checking for dlopen in -ldl... yes
    checking for Tcl_Eval in -ltcl... yes
    checking for setrlimit... yes
    checking for Fortran idate function... no
    checking for iopen in -limage... no
    checking for nc_inq_dimlen in -lnetcdf... yes
    checking for netcdf.h... yes
    Didn't find the mixkit library;
    You can download the Mixkit source
    code from the Qslim home page:
    http://graphics.cs.uiuc.edu/~garland/software/qslim.html
    and/or use --with-mixkit=<lib> to specify the location
    of libmix.a.
    checking for readd_ in -lmcidas_lib... no
    checking for X11/Xm/MwmUtil.h... no
    checking for sys/types.h... (cached) yes
    checking for sys/prctl.h... yes
    checking for sys/sysmp.h... no
    checking for sysmp.h... no
    checking for sys/lock.h... no
    checking for sys/stat.h... (cached) yes
    checking for fcntl.h... yes
    checking for sproc... no
    checking for pthread.h... yes
    checking for the pthreads library -lpthreads... no
    checking whether pthreads work without any flags... no
    checking whether pthreads work with -Kthread... no
    checking whether pthreads work with -kthread... no
    checking for the pthreads library -llthread... no
    checking whether pthreads work with -pthread... yes
    checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
    checking if more special flags are required for pthreads... no
    checking for cc_r... cc
    configure: creating ./config.status
    config.status: creating gtk/gradients/Makefile
    config.status: creating gtk/Makefile
    config.status: creating intl/Makefile
    config.status: creating po/Makefile.in
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating doc/Makefile
    config.status: creating lui5/Makefile
    config.status: creating util/Makefile
    config.status: creating config.h
    config.status: creating src/api-config.h
    config.status: src/api-config.h is unchanged
    config.status: creating po/POTFILES
    config.status: creating po/Makefile
    make all-recursive
    make[1]: Entering directory '/home/nevio/src/vis5d+-1.2.1'
    Making all in po
    make[2]: Entering directory '/home/nevio/src/vis5d+-1.2.1/po'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/nevio/src/vis5d+-1.2.1/po'
    Making all in intl
    make[2]: Entering directory '/home/nevio/src/vis5d+-1.2.1/intl'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/nevio/src/vis5d+-1.2.1/intl'
    Making all in lui5
    make[2]: Entering directory '/home/nevio/src/vis5d+-1.2.1/lui5'
    source='browser.c' object='browser.o' libtool=no \
    depfile='.deps/browser.Po' tmpdepfile='.deps/browser.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f browser.c || echo './'`browser.c
    source='newbrowser.c' object='newbrowser.o' libtool=no \
    depfile='.deps/newbrowser.Po' tmpdepfile='.deps/newbrowser.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f newbrowser.c || echo './'`newbrowser.c
    source='button.c' object='button.o' libtool=no \
    depfile='.deps/button.Po' tmpdepfile='.deps/button.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f button.c || echo './'`button.c
    source='buttonmatrix.c' object='buttonmatrix.o' libtool=no \
    depfile='.deps/buttonmatrix.Po' tmpdepfile='.deps/buttonmatrix.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f buttonmatrix.c || echo './'`buttonmatrix.c
    source='colorbar.c' object='colorbar.o' libtool=no \
    depfile='.deps/colorbar.Po' tmpdepfile='.deps/colorbar.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f colorbar.c || echo './'`colorbar.c
    source='destroy.c' object='destroy.o' libtool=no \
    depfile='.deps/destroy.Po' tmpdepfile='.deps/destroy.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f destroy.c || echo './'`destroy.c
    source='event.c' object='event.o' libtool=no \
    depfile='.deps/event.Po' tmpdepfile='.deps/event.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f event.c || echo './'`event.c
    source='field.c' object='field.o' libtool=no \
    depfile='.deps/field.Po' tmpdepfile='.deps/field.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f field.c || echo './'`field.c
    source='label.c' object='label.o' libtool=no \
    depfile='.deps/label.Po' tmpdepfile='.deps/label.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f label.c || echo './'`label.c
    source='layout.c' object='layout.o' libtool=no \
    depfile='.deps/layout.Po' tmpdepfile='.deps/layout.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f layout.c || echo './'`layout.c
    source='list.c' object='list.o' libtool=no \
    depfile='.deps/list.Po' tmpdepfile='.deps/list.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f list.c || echo './'`list.c
    source='newlist.c' object='newlist.o' libtool=no \
    depfile='.deps/newlist.Po' tmpdepfile='.deps/newlist.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f newlist.c || echo './'`newlist.c
    source='newbutton.c' object='newbutton.o' libtool=no \
    depfile='.deps/newbutton.Po' tmpdepfile='.deps/newbutton.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f newbutton.c || echo './'`newbutton.c
    source='newlabel.c' object='newlabel.o' libtool=no \
    depfile='.deps/newlabel.Po' tmpdepfile='.deps/newlabel.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f newlabel.c || echo './'`newlabel.c
    source='newslider.c' object='newslider.o' libtool=no \
    depfile='.deps/newslider.Po' tmpdepfile='.deps/newslider.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f newslider.c || echo './'`newslider.c
    source='pixmaps.c' object='pixmaps.o' libtool=no \
    depfile='.deps/pixmaps.Po' tmpdepfile='.deps/pixmaps.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f pixmaps.c || echo './'`pixmaps.c
    source='radio.c' object='radio.o' libtool=no \
    depfile='.deps/radio.Po' tmpdepfile='.deps/radio.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f radio.c || echo './'`radio.c
    source='scrollbar.c' object='scrollbar.o' libtool=no \
    depfile='.deps/scrollbar.Po' tmpdepfile='.deps/scrollbar.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f scrollbar.c || echo './'`scrollbar.c
    source='lui.c' object='lui.o' libtool=no \
    depfile='.deps/lui.Po' tmpdepfile='.deps/lui.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f lui.c || echo './'`lui.c
    source='browser2.c' object='browser2.o' libtool=no \
    depfile='.deps/browser2.Po' tmpdepfile='.deps/browser2.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f browser2.c || echo './'`browser2.c
    rm -f liblui.a
    ar cru liblui.a browser.o newbrowser.o button.o buttonmatrix.o colorbar.o destroy.o event.o field.o label.o layout.o list.o newlist.o newbutton.o newlabel.o newslider.o pixmaps.o radio.o scrollbar.o lui.o browser2.o
    ranlib liblui.a
    make[2]: Leaving directory '/home/nevio/src/vis5d+-1.2.1/lui5'
    Making all in src
    make[2]: Entering directory '/home/nevio/src/vis5d+-1.2.1/src'
    make all-am
    make[3]: Entering directory '/home/nevio/src/vis5d+-1.2.1/src'
    source='cursor.c' object='cursor.o' libtool=no \
    depfile='.deps/cursor.Po' tmpdepfile='.deps/cursor.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f cursor.c || echo './'`cursor.c
    source='displaywidget.c' object='displaywidget.o' libtool=no \
    depfile='.deps/displaywidget.Po' tmpdepfile='.deps/displaywidget.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f displaywidget.c || echo './'`displaywidget.c
    source='gui.c' object='gui.o' libtool=no \
    depfile='.deps/gui.Po' tmpdepfile='.deps/gui.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f gui.c || echo './'`gui.c
    source='gui_i.c' object='gui_i.o' libtool=no \
    depfile='.deps/gui_i.Po' tmpdepfile='.deps/gui_i.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f gui_i.c || echo './'`gui_i.c
    source='labels.c' object='labels.o' libtool=no \
    depfile='.deps/labels.Po' tmpdepfile='.deps/labels.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f labels.c || echo './'`labels.c
    source='script.c' object='script.o' libtool=no \
    depfile='.deps/script.Po' tmpdepfile='.deps/script.TPo' \
    depmode=gcc3 /bin/sh ../depcomp \
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -fno-range-check -Wall -pthread -c `test -f script.c || echo './'`script.c
    Makefile:562: recipe for target 'script.o' failed
    make[3]: Leaving directory '/home/nevio/src/vis5d+-1.2.1/src'
    Makefile:341: recipe for target 'all' failed
    make[2]: Leaving directory '/home/nevio/src/vis5d+-1.2.1/src'
    Makefile:215: recipe for target 'all-recursive' failed
    make[1]: Leaving directory '/home/nevio/src/vis5d+-1.2.1'
    Makefile:152: recipe for target 'all' failed
    Any help or advice on what would be the next best course of action is appreciated.

    Wyrmux wrote:
    GE wrote:
    Do you have glu installed on that machine?
    FYI,
    ==> Finished making: vis5d+ 1.2.1-7 (Thu Feb 13 23:16:05 EET 2014)
    Yep, just reinstalled it... Same error.
    EDIT: Have you installed vis5d+ via yaourt/packer/etc. or by downloading the tarball itself?
    I just downloaded it from AUR and used makepkg.
    Anyway, I didn't saw you were using a x86_64 machine - I'm on i686.
    http://diffchecker.com/uicihzeq
    Considering the fact that we've got pretty much the same output (configure), I guess it's all about x86_64 now, not the package itself.

  • Random Crashes. How can I start to diagnose problem.

    Just purely random and either the app just dissapears or the sys locks up, X don't respond at all and needs a reboot. Only thing is it's only when I'm runnin things todo with 3D-ness, Second Life, Eve Online etc.
    all thats in dmesg | tail is this.
    sd 2:0:0:0: [sdc] Assuming drive cache: write through
    sd 2:0:0:0: [sdc] Attached SCSI disk
    EXT3 FS on sda1, internal journal
    Adding 979924k swap on /dev/sda3.  Priority:-1 extents:1 across:979924k
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    agpgart-nvidia 0000:00:00.0: AGP 3.0 bridge
    agpgart-nvidia 0000:00:00.0: putting AGP V3 device into 8x mode
    nvidia 0000:03:00.0: putting AGP V3 device into 8x mode
    /var/log/meggasges.log
    an 24 16:19:19 archie ntfs-3g[4732]: Mount options: rw,nosuid,nodev,uhelper=devkit,silent,allow_other,nonempty,relatime,fsname=/dev/sdb1,blkdev,blksize=4096
    Jan 24 16:19:19 archie ntfs-3g[4732]: Global ownership and permissions enforced
    Jan 24 16:56:08 archie -- MARK --
    Jan 24 17:16:08 archie -- MARK --
    Jan 24 17:36:08 archie -- MARK --
    Jan 24 17:56:08 archie -- MARK --
    Jan 24 18:16:08 archie -- MARK --
    Jan 24 18:36:08 archie -- MARK --
    Jan 24 18:56:08 archie -- MARK --
    Jan 24 19:16:09 archie -- MARK --
    It's old hardware mostly. Shuttle SN45G, Barton XP 2500+, 1Gb RAM, 7600GS graphics card. Not got anythin clocked. I'm thinkin it's just unlucky with older hardware, but would like to find a log, confirm it etc.
    Cheers
    Jabb3r
    Last edited by Jabb3r (2010-01-24 19:59:28)

    This is the output. I aint scanned meself yet properly, just posted it
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    [jabb3r@archie ~]$ sudo cat /var/log/Xorg.0.log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.7.3.901 (1.7.4 RC 1)
    Release Date: 2009-12-11
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.32-ARCH i686
    Current Operating System: Linux archie 2.6.32-ARCH #1 SMP PREEMPT Sat Dec 26 08:26:17 UTC 2009 i686
    Kernel command line: root=/dev/disk/by-uuid/2c0d1594-45e4-4f59-84df-c752dc944e05 ro noapic
    Build Date: 12 December 2009 12:59:40PM
    Current version of pixman: 0.16.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jan 24 16:18:56 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) Loader magic: 0x81e4c60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 7
    (--) PCI:*(0:3:0:0) 10de:02e1:0000:0000 nVidia Corporation G73 [GeForce 7600 GS] rev 162, Mem @ 0xe4000000/16777216, 0xd0000000/268435456, 0xe5000000/16777216, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 190.53 Tue Dec 8 20:47:42 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 190.53 Tue Dec 8 19:16:02 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 03@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules/libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) Jan 24 16:18:57 NVIDIA(0): Enabling RENDER acceleration
    (II) Jan 24 16:18:57 NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) Jan 24 16:18:57 NVIDIA(0): enabled.
    (II) Jan 24 16:18:58 NVIDIA(0): NVIDIA GPU GeForce 7600 GS (G73) at PCI:3:0:0 (GPU-0)
    (--) Jan 24 16:18:58 NVIDIA(0): Memory: 262144 kBytes
    (--) Jan 24 16:18:58 NVIDIA(0): VideoBIOS: 05.73.22.33.52
    (II) Jan 24 16:18:58 NVIDIA(0): Detected AGP rate: 8X
    (--) Jan 24 16:18:58 NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) Jan 24 16:18:58 NVIDIA(0): Connected display device(s) on GeForce 7600 GS at PCI:3:0:0:
    (--) Jan 24 16:18:58 NVIDIA(0): DELL D2028TCO (CRT-1)
    (--) Jan 24 16:18:58 NVIDIA(0): DELL D2028TCO (CRT-1): 400.0 MHz maximum pixel clock
    (II) Jan 24 16:18:58 NVIDIA(0): Assigned Display Device: CRT-1
    (II) Jan 24 16:18:58 NVIDIA(0): Validated modes:
    (II) Jan 24 16:18:58 NVIDIA(0): "1600x1200"
    (II) Jan 24 16:18:58 NVIDIA(0): "1280x1024"
    (II) Jan 24 16:18:58 NVIDIA(0): "1024x768"
    (II) Jan 24 16:18:58 NVIDIA(0): "800x600"
    (II) Jan 24 16:18:58 NVIDIA(0): "640x480"
    (II) Jan 24 16:18:58 NVIDIA(0): Virtual screen size determined to be 1600 x 1200
    (--) Jan 24 16:18:58 NVIDIA(0): DPI set to (104, 105); computed from "UseEdidDpi" X config
    (--) Jan 24 16:18:58 NVIDIA(0): option
    (==) Jan 24 16:18:58 NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) Jan 24 16:18:58 NVIDIA(0): Initialized AGP GART.
    (II) Jan 24 16:18:58 NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) Jan 24 16:18:58 NVIDIA(0): may not be running or the "AcpidSocketPath" X
    (II) Jan 24 16:18:58 NVIDIA(0): configuration option may not be set correctly. When the
    (II) Jan 24 16:18:58 NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    (II) Jan 24 16:18:58 NVIDIA(0): try to use it to receive ACPI event notifications. For
    (II) Jan 24 16:18:58 NVIDIA(0): details, please see the "ConnectToAcpid" and
    (II) Jan 24 16:18:58 NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) Jan 24 16:18:58 NVIDIA(0): Config Options in the README.
    (II) Jan 24 16:18:58 NVIDIA(0): Setting mode "1600x1200"
    (II) Loading extension NV-GLX
    (II) Jan 24 16:18:58 NVIDIA(0): Initialized OpenGL Acceleration
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) Jan 24 16:18:58 NVIDIA(0): Initialized X Rendering Acceleration
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found relative axes
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device Microsoft LifeChat LX-3000
    (**) Microsoft LifeChat LX-3000: always reports core events
    (**) Microsoft LifeChat LX-3000: Device: "/dev/input/event7"
    (II) Microsoft LifeChat LX-3000: Found keys
    (II) Microsoft LifeChat LX-3000: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Microsoft LifeChat LX-3000" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device USB Optical Mouse
    (**) USB Optical Mouse: always reports core events
    (**) USB Optical Mouse: Device: "/dev/input/event6"
    (II) USB Optical Mouse: Found 3 mouse buttons
    (II) USB Optical Mouse: Found scroll wheel(s)
    (II) USB Optical Mouse: Found relative axes
    (II) USB Optical Mouse: Found x and y relative axes
    (II) USB Optical Mouse: Found absolute axes
    (II) USB Optical Mouse: Configuring as mouse
    (**) USB Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE)
    (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
    (**) USB Optical Mouse: (accel) acceleration profile 0
    (II) USB Optical Mouse: initialized for relative axes.
    (WW) USB Optical Mouse: ignoring absolute axes.
    (II) config/hal: Adding input device Chicony Saitek Eclipse II Keyboard
    (**) Chicony Saitek Eclipse II Keyboard: always reports core events
    (**) Chicony Saitek Eclipse II Keyboard: Device: "/dev/input/event5"
    (II) Chicony Saitek Eclipse II Keyboard: Found 8 mouse buttons
    (II) Chicony Saitek Eclipse II Keyboard: Found keys
    (II) Chicony Saitek Eclipse II Keyboard: Configuring as mouse
    (II) Chicony Saitek Eclipse II Keyboard: Configuring as keyboard
    (**) Chicony Saitek Eclipse II Keyboard: YAxisMapping: buttons 4 and 5
    (**) Chicony Saitek Eclipse II Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Chicony Saitek Eclipse II Keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Chicony Saitek Eclipse II Keyboard
    (**) Chicony Saitek Eclipse II Keyboard: always reports core events
    (**) Chicony Saitek Eclipse II Keyboard: Device: "/dev/input/event4"
    (II) Chicony Saitek Eclipse II Keyboard: Found keys
    (II) Chicony Saitek Eclipse II Keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Chicony Saitek Eclipse II Keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Logitech Trackball
    (**) Logitech Trackball: always reports core events
    (**) Logitech Trackball: Device: "/dev/input/event3"
    (II) Logitech Trackball: Found 3 mouse buttons
    (II) Logitech Trackball: Found scroll wheel(s)
    (II) Logitech Trackball: Found relative axes
    (II) Logitech Trackball: Found x and y relative axes
    (II) Logitech Trackball: Configuring as mouse
    (**) Logitech Trackball: YAxisMapping: buttons 4 and 5
    (**) Logitech Trackball: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech Trackball" (type: MOUSE)
    (**) Logitech Trackball: (accel) keeping acceleration scheme 1
    (**) Logitech Trackball: (accel) acceleration profile 0
    (II) Logitech Trackball: initialized for relative axes.
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event1"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"

  • SIGALRM keeps firing

    On Solaris 10, an alarm-based timer (ITIMER_REAL) enabled using
    sigsuspend continues to generate SIGALRMs even when sigsuspend is no longer called. The following program continues to generate SIGALRMs every 62.5 milliseconds, even though sigsuspend is not called after the 100th iteration. Interestingly, unscheduled SIGARLMs do not occur if the program is run single-threaded (if the non-clock thread is not created).
    This program works on Solaris 6 & 8.
    #include <unistd.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    #include <thread.h>
    #include <signal.h>
    #include <synch.h>
    #include <ctype.h>
    #include <time.h>
    #include <sys/types.h>
    #include <sys/ipc.h>
    #include <sys/msg.h>
    #include <sys/shm.h>
    #include <sys/lock.h>
    #include <sys/utsname.h>
    #include <sys/time.h>
    #include <semaphore.h>
    double sim_time,local_time,delta_t,intv;
    int run_mode,_cnt=0;
    time_t prev_unix_sec=0;
    long prev_unix_usec=0;
    void clock_handler(int sig_num) {
         struct           timeval start_time;
    fprintf(stderr,"\n");
    gettimeofday(&start_time, NULL);
    if (run_mode == 1) {
    fprintf(stderr,"RM1: signo=%d ",sig_num);
    local_time = (double) start_time.tv_sec +
    ((double) start_time.tv_usec)/1000000;
    sim_time += 0.0625;
    delta_t = local_time - sim_time;
    fprintf(stderr,"XNT=%d UT=%d.%06d",
    cnt,starttime.tv_sec,start_time.tv_usec);
    if (prev_unix_usec>start_time.tv_usec) {
    start_time.tv_sec -= 1;
    start_time.tv_usec += 1000000;
    intv = (start_time.tv_sec-prev_unix_sec) +
    (start_time.tv_usec-prev_unix_usec)/1000000.0;
    fprintf(stderr," INTV=%f DEL=%f",intv,delta_t);
    prev_unix_sec=start_time.tv_sec;
    prev_unix_usec=start_time.tv_usec;
    ++_cnt;
    if (_cnt>100) {
    run_mode = 1;
    void ClkThr(void arg)
    static sigset_t          clk_sigset, alarm_sigset;
    static struct sigaction clk_sig_action;
    void clock_handler(int sig_num);
    static struct itimerval clk_timer;          
         sigfillset(&alarm_sigset);
         sigdelset(&alarm_sigset, SIGALRM);
         sigemptyset(&clk_sigset);     
         sigaddset(&clk_sigset, SIGALRM);     
         thr_sigsetmask(SIG_SETMASK, &clk_sigset, NULL);
         clk_sig_action.sa_handler = clock_handler;
    sigfillset(&clk_sig_action.sa_mask );      
    clk_sig_action.sa_flags = 0;
         sigaction(SIGALRM, &clk_sig_action, NULL);
         clk_timer.it_value.tv_sec = 0;
         clk_timer.it_value.tv_usec = 62500;
         clk_timer.it_interval.tv_sec = 0;
         clk_timer.it_interval.tv_usec = 62500;
         setitimer(ITIMER_REAL, &clk_timer, NULL);
         for(;;)     {                    
         if(run_mode == 0) {
    sigsuspend(&alarm_sigset);
         else if(run_mode == 1) {
         clock_handler(0);
    void* QgtThr(void* arg) {
    sem_t* qsema=(sem_t*)malloc(sizeof(sem_t));
    sem_init(qsema,0,0);
    for(;;) {
    sem_wait(qsema);
    int main(int argc, char *argv[]) {
    struct           timeval start_time;
    thr_setconcurrency(5);
    sim_time = 0.0;
    local_time = 0 ;
    run_mode = 0;
    gettimeofday(&start_time, NULL);
    sim_time = (double) start_time.tv_sec +
    ((double) start_time.tv_usec)/1000000;
    /* IF NON-CLOCK THREAD IS NOT CREATED
    THE PROGRAM WORKS */
    if (thr_create(NULL,0,QgtThr,0,THR_BOUND,NULL)!= 0) {
    fprintf(stderr, "qgtthr create failed\n");
    /* END NON-CLOCK THREAD CREATE */
    if (thr_create(NULL,0,ClkThr,0,THR_BOUND,NULL)!= 0) {
    fprintf(stderr,"clkthr create failed\n");
    thr_exit(0);
    }

    It started since the update of the plugin downloadhelper to 4.9.3, they've added that popup so it opens a new window or a new tab. I looked in firefox config and the registry but dont know where the value is stored to stop it.

  • V$lock, sys.obj$ very slow

    Hello,
    I need to fetch wait time by object and that is why the query below. The problem: it takes forever :( any suggestions?
    select vlock.ctime, vdb.name,sysdate
    from v$lock vlock, sys.obj$ vdb
    where block = 1
    and type = 'TM'
    and id1 = vdb.obj#
    order by ctime desc
    Thanks,
    R

    Hi,
    This query should run, its not a heavy query. There could be other database related reasons which could be causing this.
    Below is useful link which can give some good information (see posts from June 11, 2003):
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:839412906735
    Or just give RULE hint a try if you are using 9i and above.
    select */*+ RULE */* vlock.ctime, vdb.name,sysdate
    from v$lock vlock, sys.obj$ vdb
    where block = 1
    and type = 'TM'
    and id1 = vdb.obj#
    order by ctime desc

  • Sys user locks

    oracle:10.2.0.3
    os : SunOS csmqadb4 5.10
    Server working very slow. I haverified the locks.
    SQL>  select l1.sid, ' IS BLOCKING ', l2.sid
      from v$lock l1, v$lock l2
    where l1.block =1 and l2.request > 0
      and l1.id1=l2.id1
      and l1.id2=l2.id2
      2    3    4    5    6
    SQL> /
           SID 'ISBLOCKING'                            SID
           505  IS BLOCKING                            495
    select  SID , SERIAL#   , USERNAME  , STATUS , SCHEMANAME    from v$session where sid in ('505','495');
           SID    SERIAL# USERNAME                       STATUS   SCHEMANAME
           495       1253                                ACTIVE   SYS
           505       1546                                ACTIVE   SYS
    further verified
    SQL>  select s1.username || '@' || s1.machine
      2   || ' ( SID=' || s1.sid || ' )  is blocking '
      3   || s2.username || '@' || s2.machine || ' ( SID=' || s2.sid || ' ) ' AS blocking_status
      4   from v$lock l1, v$session s1, v$lock l2, v$session s2
      5    where s1.sid=l1.sid and s2.sid=l2.sid
      6    and l1.BLOCK=1 and l2.request > 0
      7   and l1.id1 = l2.id1
      8    and l2.id2 = l2.id2 ;
    BLOCKING_STATUS
    @csmqadb4 ( SID=505 )  is blocking @csmqadb4 ( SID=495 )
    checked in detail the v$sesssion
    SQL> column  TYPE format a30
    SQL> column SCHEMANAME format a10
    SQL> column EVENT format a30
    SQL> column WAIT_CLASS format a30
    SQL> select  type,schemaname, module, BLOCKING_SESSION_STATUS,event, WAIT_CLASS from v$session where sid in ('505','495');
    TYPE                           SCHEMANAME MODULE                         BLOCKING_SE EVENT                          WAIT_CLASS
    BACKGROUND                     SYS        MMON_SLAVE                     VALID       enq: TX - row lock contention  Application
    BACKGROUND                     SYS        MMON_SLAVE                     NO HOLDER   db file sequential read        User I/O
    [pre]
    What should we do when memory process locks other than restart the isntance ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I am raising a service rquest to oracle
    mmon_10373.trc this trace file shows error every minut is it related with this error ?
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:21:00.851
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:21:58.238
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:23:01.793
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:24:02.158
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:24:59.528
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:25:59.876
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:27:00.304
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:28:03.664
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:29:01.074
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:30:01.401
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:31:04.920
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:32:05.376
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:33:02.827
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:34:03.458
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:35:04.035
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:36:07.544
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:37:05.110
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    *** 2008-07-05 08:38:05.481
    *** KEWRAFC: Flush slave failed, AWR Enqueue Timeout

  • Loadjava hangs - exclusive lock on sys.javasnm$

    We upgraded from Oracle 9.2.0.4 to 9.2.0.5 (using export then import of the entire database) and have found that our user java classes that compiled fine in 9.2.0.4 aren't as lucky in 9.2.0.5. When we use "loadjava" to recompile the jar files, some compiles are successful and others hang. When we investigate the "hanging" ones we find an exclusive lock on sys.javasnm$. The only session doing a loadjava compile is mine. We kill the Oracle session, the exclusive lock goes away, we compile a few more jars successfully, then the "hanging" begins again. Can anyone explain what is going on? Thanks in advance.

    Solution - We were missing the DROP SYNONYM permission for the Oracle User we were importing the java code for. Once that was in place the locks were no longer an issue.

  • ORA-04020: deadlock detected while trying to lock object SYS

    Upgrading database from 7.3.3 to 7.3.4. Running CAT7304.sql,
    Catalog.sql, and Catproc.sql. In the log file created there are
    mulptiple occurrences of;
    ORA-04045: errors during recompilation/revalidation of
    SYS.DBMS_SYS_SQL
    ORA-04045: errors during recompilation/revalidation of
    SYS.DBMS_SQL
    ORA-04020: deadlock detected while trying to lock object
    SYS.DBMS_SYS_SQL
    This only occurs on a Netware server, it works fine on NT.
    null

    Hi Steve,
    I recommend that you contact Oracle RDBMS support directly.Our
    main area of expertise is migrations from non-oracle
    environments.
    Regards
    John
    Steve Schindler (guest) wrote:
    : Upgrading database from 7.3.3 to 7.3.4. Running CAT7304.sql,
    : Catalog.sql, and Catproc.sql. In the log file created there are
    : mulptiple occurrences of;
    : ORA-04045: errors during recompilation/revalidation of
    : SYS.DBMS_SYS_SQL
    : ORA-04045: errors during recompilation/revalidation of
    : SYS.DBMS_SQL
    : ORA-04020: deadlock detected while trying to lock object
    : SYS.DBMS_SYS_SQL
    : This only occurs on a Netware server, it works fine on NT.
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Locked SYS and SYSTEM user

    DB version: 11.2.0.2
    OS : Solaris 10
    In our production DBs , I've noticed that both SYS and SYSTEM users are locked
    $ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Thu Jan 19 14:21:34 2012
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning option
    SQL> select username, account_status from dba_users where username like 'SYS%';
    USERNAME                       ACCOUNT_STATUS
    SYSTEM                         LOCKED
    SYS                            LOCKED1. How can I log in to SYS account despite being locked. Is it because i logged in through external authentication?
    2. Is locking the SYS user a standard practise ? If so, why ?

    Hi;
    1. How can I log in to SYS account despite being locked. Is it because i logged in through external authentication?set ORACLE_HOME, ORACLE_SID than
    sqlplus "/as sysdba"
    alter user xx account unlock;
    2. Is locking the SYS user a standard practise ? If so, why ?
    SYS and SYSTEM are default users, created with the creation of the database. Although they have much power - as they are granted the DBA role - they're still ordinary users. Because SYS owns the data dictionary, (s)he is considered a bit more special than SYSTEM. But SYS has the SYSDBA privilege which SYSTEM doesn't. This makes it possible for SYS to become a very very powerful user. This is the case when (s)he connects as sys/password as SYSDBA or / as sysdba. The as sysdba phrase is a request to aqcuire the privileges associated wht the single SYSDBA system privileges (see here).
    Source:
    http://www.adp-gmbh.ch/ora/misc/sys_system_internal.html
    Regard
    Helios

  • Lock sys and system user

    Dear all,
    We have 10.2.0.4 on solaris 10.
    Currently we had I.T audit on our environment and auditor commented to lock sys and system user and use one user with any name (not oracle generic name) and grant him sys and system privilege and to use this user for admin purposes. is this right ?.. is this recommended ?
    Please advise

    Hello,
    I think it's not a right way to lock SYS.
    More over, if you connect as OS Administrator (root for Unix/linux) on the server and use
    OS Authentification then, you can connect on SYS AS SYSDBA anyway.
    So, in fact, it's not possible to lock out SYS even if you execute the following:
    ALTER USER SYS ACCOUNT LOCK;If you want to prevent access on SYS you should set a complex and long password and
    apply the same rule for the Administrator / root OS user.
    These passwords must be known by very few and well - identified people and written nowhere
    (in any files or scripts).
    More over, you should limit DBA roles to SYS and SYSTEM and remove this powerful Role
    from other Oracle Users.
    Then, you may enable session AUDIT so as to control the connexion on the database and,
    create a LOGON TRIGGER so as to check the login, workstation, program of the end users
    who connect to the database.
    On 10g, EM DBConsole shows an alert everytime a User is connected with SYS.
    Please, find enclosed, an interesting document written by Pete Finigan on this topic:
    http://www.insight.co.uk/files/presentations/Hacking%20and%20securing%20Oracle.pdf
    Hope this help.
    Best regards,
    Jean-Valentin

Maybe you are looking for

  • Services in other programs?

    I'm not sure if this is the right area to ask this but since I figured this is an OS feature, this might work. Is there a way to add services to the contexual menu so I can access the services I see in Safari in other programs like Firefox? I wasn't

  • Missing Sync vs. PocketMac For Synchronizing Data between Blackberry and MAC

    I'm looking for software to synchronize contacts, events, appointments, notes, tasks, etc., between my Blackberry Curve (8330 Series) and my iMac (MAC OS X 10.5.5).  I've investigated Missing Sync and it certainly would work.  Today I was advised tha

  • IMac G5 hangs on startup, won't boot from disc

    Hello, My brother's computer has been acting up and I've been unable to fix it for him...so I was hoping I might be able to get some advice here. Problem: hangs on startup. It goes to the gray screen with the Apple logo and the spinning progress whee

  • Missing iPad apps

    Why is there no weather, stocks, clock, and calculator?¿?¿? Thank you

  • Le micro-contrôleur c167 fait planter le logiciel LabVIEW 2012

    Bonjour, Tout d'abord je vous explique l'expérience que j'effectue. Je souhaite piloter automatiquement un robot cartésien qui effectuera une cartographie du champ magnétique en 3D. Pour cela j'utilise une carte PCI-7334 reliée à l'UMI-7774 qui est l