REGEXP_REPLACE and backslashes ... possible bug in 10g?

I have had a problem with backslashes in the replacement text of the REGEXP_REPLACE function.
You see, I'm using REGEXP_REPLACE to implement a "replace whole words only" function. The implementation consists of four find-replace pairs constructed as follows (with the <find> and <replace> taking the place of the actual strings):
update X set Y = REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE ('([^[:alnum:]])<find>([^[:alnum:]])', '\1<replace>\2'), '^<find>([^[:alnum:]])', '<replace>\1'), '([^[:alnum:]])<find>$', '\1<replace>'), '^<find>$', '<replace>')
The problem comes in when <replace> contains backslashes. According to the documentation (the Oracle Database SQL Reference, section 7) suggests that \ must appear as \\ in the replacement string.
However, I'm finding that you use \\ to represent \ in the replacement only if the find string does not contain groups (the parenthesized expressions). Is that how it's supposed to work? We're using 10g.
Here is a small SQL script to illustrate the behaviour I'm seeing. It is supposed to replace "is" with "\". I expected the expression for OUTPUT1 to be correct, but it seems that the expression for OUTPUT2 works (notice that the second expression is different in only ONE CHARACTER from the first).
create table REGEXP_TEST ( INPUT VARCHAR2(15), OUTPUT1 VARCHAR2(15), OUTPUT2 VARCHAR2(15), EXPECTED VARCHAR2(15), INCORRECT VARCHAR2(15)) ;
insert into REGEXP_TEST (INPUT, EXPECTED, INCORRECT) values ('This is a test', 'This \ a test', 'This \\ a test');
insert into REGEXP_TEST (INPUT, EXPECTED, INCORRECT) values ('This is', 'This \', 'This \\');
insert into REGEXP_TEST (INPUT, EXPECTED, INCORRECT) values ('is a test', '\ a test', '\\ a test');
insert into REGEXP_TEST (INPUT, EXPECTED, INCORRECT) values ('is', '\', '\\');
update REGEXP_TEST set OUTPUT1 = REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (INPUT, '([^[:alnum:]])is([^[:alnum:]])', '\1\\\2'), '^is([^[:alnum:]])', '\\\1'), '([^[:alnum:]])is$', '\1\\'), '^is$', '\\');
update REGEXP_TEST set OUTPUT2 = REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (INPUT, '([^[:alnum:]])is([^[:alnum:]])', '\1\\\2'), '^is([^[:alnum:]])', '\\\1'), '([^[:alnum:]])is$', '\1\\'), '^is$', '\');
select * from REGEXP_TEST;

Hello Darren,
You're right, the behaviour does seem a little odd:
SQL> select regexp_replace('X', 'X', '\\') from dual;
SQL> select regexp_replace('X', '(X)', '\\') from dual;
What I suggest is you rewrite your query as a single regular expression thus removing the 3 extra calls to REGEXP_REPLACE:
update REGEXP_TEST
set OUTPUT1 = REGEXP_REPLACE (INPUT, '(^|[^[:alnum:]])is([^[:alnum:]]|$)', '\1\\\2');
This should solve your problem for now.
Regards.

Similar Messages

  • A question about Oracle installer and a possible bug in JVM

    Hello,
    I appreciate if you could kindly guide me to solve the following problem.
    I'm trying to install Oracle11g Enterprise on a Linux system (Redhat Enterprise 5.3).
    There is no X system, and therefore I chose to install by using a response file
    in silent mode. I set the parameters value as indicated in Oracle installation
    guide. Yet, when I launch the installer, it seems that there is a problem with
    java:
    [oracle@ccsaplinux0002 database]$ ./runInstaller -responseFile /usr/local/oracle/database/responseFileV01.rsp -silent
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB.   Actual 34517 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 8189 MB    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-08-10_06-53-41PM. Please wait ...[oracle@ccsaplinux0002 database]$ Oracle Universal Installer, Version 11.1.0.6.0 Production
    Copyright (C) 1999, 2007, Oracle. All rights reserved.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0xb7948692, pid=2854, tid=3086293200
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # V  [libjvm.so+0x19c692]
    # An error report file with more information is saved as hs_err_pid2854.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    [oracle@ccsaplinux0002 database]$I looked in the oracle package that I downloaded, there was no jdk or jre direcotry.
    As a result I downloaded the JDK 1.6.0_15 available on Sun microsystem web site and then
    I set manually in oracle user ~/.bash_profile the value for $JAVA_HOME.
    Why I get this error?
    Thanks in advance,
    Dariush
    :)

    schavali wrote:
    >
    # An error report file with more information is saved as hs_err_pid2854.log
    >
    Can you post the contents of this error log ?
    HTH
    SriniHello there,
    Thanks for your attention to my problem. Here is the file:
    Kind Regards,
    Dariyoosh
    [root@ccsaplinux0002 oracle]# cat /tmp/hs_err_pid2854.log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0xb7948692, pid=2854, tid=3086293200
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # V  [libjvm.so+0x19c692]
    ---------------  T H R E A D  ---------------
    Current thread (0x0805f5c0):  JavaThread "main" [_thread_in_vm, id=2854]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0xb7b3716c, ECX=0x000bfd68, EDX=0x00000001
    ESP=0xbfd68950, EBP=0xbfd689b4, ESI=0x0805f748, EDI=0xb7b49fa0
    EIP=0xb7948692, CR2=0x00000000, EFLAGS=0x00010286
    Top of Stack: (sp=0xbfd68950)
    0xbfd68950:   b7b3716c bfd68974 b79485e7 bfd68990
    0xbfd68960:   00000000 bfd68980 b7b3716c 0805f748
    0xbfd68970:   08060320 08060328 08060714 0805f5c0
    0xbfd68980:   bfd68994 0805f5c0 00000000 0805f5c0
    0xbfd68990:   bfd68a1c 00000000 08060730 0805f5c0
    0xbfd689a0:   08060774 08060774 aec60018 aec60018
    0xbfd689b0:   0805f680 bfd68a0c a371553b 0805f680
    0xbfd689c0:   00000000 00000000 aec60018 aec60018
    Instructions: (pc=0xb7948692)
    0xb7948682:   bc 8b 46 08 89 45 c0 8b 46 0c 89 45 c4 8b 45 0c
    0xb7948692:   8b 00 50 e8 f6 f3 fd ff 83 ec 0c 89 c7 50 e8 f3
    Stack: [0xbfb6e000,0xbfd6e000),  sp=0xbfd68950,  free space=2026k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V  [libjvm.so+0x19c692]
    C  [liboraInstaller.so+0x453b]  Java_oracle_sysman_oii_oiip_osd_unix_OiipuUnixOps_chgrp+0x19
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.changeGroup(Ljava/lang/String;)Z+19
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.writeInvLoc(Loracle/sysman/oii/oiic/OiicSessionInterfaceManager;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V+86
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(Loracle/sysman/oii/oiic/OiicSessionInterfaceManager;Ljava/lang/String;Ljava/lang/String;)V+42
    j  oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(Ljava/lang/String;Ljava/lang/String;)I+21
    j  oracle.sysman.oii.oiic.OiicSilentInterfaceManager.doInvSetupOperations(Ljava/lang/String;Ljava/lang/String;)I+3
    j  oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(Z)I+73
    j  oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(Z)I+249
    j  oracle.sysman.oii.oiic.OiicPullSession.doOperation(Z)I+11
    j  oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(Z)I+100
    j  oracle.sysman.oii.oiic.OiicInstaller.run()V+48
    j  oracle.sysman.oii.oiic.OiicInstaller.runInstaller([Ljava/lang/String;)I+107
    j  oracle.sysman.oii.oiic.OiicInstaller.main([Ljava/lang/String;)V+6
    v  ~StubRoutines::call_stub
    V  [libjvm.so+0x17ad8c]
    V  [libjvm.so+0x28efd8]
    V  [libjvm.so+0x17abbf]
    V  [libjvm.so+0x1a5472]
    V  [libjvm.so+0x196682]
    C  [java+0x1873]
    C  [libc.so.6+0x15e8c]  __libc_start_main+0xdc
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.chgrp(Ljava/lang/String;Ljava/lang/String;)I+0
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.changeGroup(Ljava/lang/String;)Z+19
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.writeInvLoc(Loracle/sysman/oii/oiic/OiicSessionInterfaceManager;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V+86
    j  oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(Loracle/sysman/oii/oiic/OiicSessionInterfaceManager;Ljava/lang/String;Ljava/lang/String;)V+42
    j  oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(Ljava/lang/String;Ljava/lang/String;)I+21
    j  oracle.sysman.oii.oiic.OiicSilentInterfaceManager.doInvSetupOperations(Ljava/lang/String;Ljava/lang/String;)I+3
    j  oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(Z)I+73
    j  oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(Z)I+249
    j  oracle.sysman.oii.oiic.OiicPullSession.doOperation(Z)I+11
    j  oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(Z)I+100
    j  oracle.sysman.oii.oiic.OiicInstaller.run()V+48
    j  oracle.sysman.oii.oiic.OiicInstaller.runInstaller([Ljava/lang/String;)I+107
    j  oracle.sysman.oii.oiic.OiicInstaller.main([Ljava/lang/String;)V+6
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x080cbc18 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2860]
      0x080ca708 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2859]
      0x080c9790 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2858]
      0x080bfc08 JavaThread "Finalizer" daemon [_thread_blocked, id=2857]
      0x080bddc0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2856]
    =>0x0805f5c0 JavaThread "main" [_thread_in_vm, id=2854]
    Other Threads:
      0x080bb0f0 VMThread [id=2855]
      0x080cd1e0 WatcherThread [id=2861]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 576K, used 458K [0xa5150000, 0xa51f0000, 0xa5cd0000)
      eden space 512K,  85% used [0xa5150000, 0xa51bdb50, 0xa51d0000)
      from space 64K,  29% used [0xa51d0000, 0xa51d4cb8, 0xa51e0000)
      to   space 64K,   0% used [0xa51e0000, 0xa51e0000, 0xa51f0000)
    tenured generation   total 1408K, used 1367K [0xa5cd0000, 0xa5e30000, 0xae750000)
       the space 1408K,  97% used [0xa5cd0000, 0xa5e25eb0, 0xa5e26000, 0xa5e30000)
    compacting perm gen  total 8192K, used 5575K [0xae750000, 0xaef50000, 0xb2750000)
       the space 8192K,  68% used [0xae750000, 0xaecc1ec0, 0xaecc2000, 0xaef50000)
    No shared spaces configured.
    Dynamic libraries:
    0078f000-007a9000 r-xp 00000000 03:01 10762034   /lib/ld-2.5.so
    007a9000-007aa000 r-xp 00019000 03:01 10762034   /lib/ld-2.5.so
    007aa000-007ab000 rwxp 0001a000 03:01 10762034   /lib/ld-2.5.so
    007ad000-008eb000 r-xp 00000000 03:01 10762035   /lib/libc-2.5.so
    008eb000-008ed000 r-xp 0013e000 03:01 10762035   /lib/libc-2.5.so
    008ed000-008ee000 rwxp 00140000 03:01 10762035   /lib/libc-2.5.so
    008ee000-008f1000 rwxp 00000000 00:00 0
    008f3000-008f5000 r-xp 00000000 03:01 10762039   /lib/libdl-2.5.so
    008f5000-008f6000 r-xp 00001000 03:01 10762039   /lib/libdl-2.5.so
    008f6000-008f7000 rwxp 00002000 03:01 10762039   /lib/libdl-2.5.so
    008f9000-0091e000 r-xp 00000000 03:01 10762037   /lib/libm-2.5.so
    0091e000-0091f000 r-xp 00024000 03:01 10762037   /lib/libm-2.5.so
    0091f000-00920000 rwxp 00025000 03:01 10762037   /lib/libm-2.5.so
    00922000-00935000 r-xp 00000000 03:01 10762038   /lib/libpthread-2.5.so
    00935000-00936000 r-xp 00012000 03:01 10762038   /lib/libpthread-2.5.so
    00936000-00937000 rwxp 00013000 03:01 10762038   /lib/libpthread-2.5.so
    00937000-00939000 rwxp 00000000 00:00 0
    00aac000-00abf000 r-xp 00000000 03:01 10762054   /lib/libnsl-2.5.so
    00abf000-00ac0000 r-xp 00012000 03:01 10762054   /lib/libnsl-2.5.so
    00ac0000-00ac1000 rwxp 00013000 03:01 10762054   /lib/libnsl-2.5.so
    00ac1000-00ac3000 rwxp 00000000 00:00 0
    08048000-08057000 r-xp 00000000 03:01 1145290    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/bin/java
    08057000-08059000 rwxp 0000e000 03:01 1145290    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/bin/java
    08059000-0861c000 rwxp 00000000 00:00 0          [heap]
    a3711000-a371b000 r-xp 00000000 03:01 1145413    /tmp/OraInstall2009-08-10_06-53-41PM/oui/lib/linux/liboraInstaller.so
    a371b000-a371d000 rwxp 00009000 03:01 1145413    /tmp/OraInstall2009-08-10_06-53-41PM/oui/lib/linux/liboraInstaller.so
    a371d000-a37f4000 r-xs 00000000 03:01 1145388    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/srvm.jar
    a37f4000-a387e000 r-xs 00000000 03:01 1145387    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/xml.jar
    a387e000-a3884000 r-xs 00000000 03:01 1145386    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/ojmisc.jar
    a3884000-a3899000 r-xs 00000000 03:01 1145385    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/orai18n-mapping.jar
    a3899000-a399d000 r-xs 00000000 03:01 1145384    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/orai18n-collation.jar
    a399d000-a39da000 r-xs 00000000 03:01 1145366    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/jewt4-nls.jar
    a39da000-a3be7000 r-xs 00000000 03:01 1145365    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/jewt4.jar
    a3be7000-a3d05000 r-xs 00000000 03:01 1145383    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/classes12.jar
    a3d05000-a3d0d000 r-xs 00000000 03:01 1145381    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/swingaccess.jar
    a3d0d000-a3d5a000 r-xs 00000000 03:01 1145364    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/ewt3-nls.jar
    a3d5a000-a3d60000 r-xs 00000000 03:01 1145382    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/ewt3-swingaccess.jar
    a3d60000-a3f28000 r-xs 00000000 03:01 1145363    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/ewt3.jar
    a3f28000-a3f4f000 r-xs 00000000 03:01 1145368    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/help4-nls.jar
    a3f4f000-a3fc3000 r-xs 00000000 03:01 1145367    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/help4.jar
    a3fc3000-a4078000 r-xs 00000000 03:01 1145380    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/oracle_ice.jar
    a4078000-a409b000 r-xs 00000000 03:01 1145378    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_zh_TW.jar
    a409b000-a40be000 r-xs 00000000 03:01 1145377    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_zh_CN.jar
    a40be000-a40e1000 r-xs 00000000 03:01 1145376    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_pt_BR.jar
    a40e1000-a4103000 r-xs 00000000 03:01 1145375    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_ko.jar
    a4103000-a4124000 r-xs 00000000 03:01 1145374    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_ja.jar
    a4124000-a4146000 r-xs 00000000 03:01 1145373    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_it.jar
    a4146000-a416a000 r-xs 00000000 03:01 1145372    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_fr.jar
    a416a000-a418c000 r-xs 00000000 03:01 1145371    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_es.jar
    a418c000-a41b0000 r-xs 00000000 03:01 1145370    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp_de.jar
    a41b0000-a41d0000 r-xs 00000000 03:01 1145369    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstHelp.jar
    a41d0000-a41f1000 r-xs 00000000 03:01 1145379    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/InstImages.jar
    a41f1000-a422b000 r-xs 00000000 03:01 1145432    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/http_client.jar
    a422b000-a4266000 r-xs 00000000 03:01 1145389    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/remoteinterfaces.jar
    a4266000-a4271000 r-xs 00000000 03:01 1145390    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/ssh.jar
    a4271000-a429c000 r-xs 00000000 03:01 1145391    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/jsch.jar
    a429c000-a42e5000 r-xs 00000000 03:01 1145427    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/OraPrereq.jar
    a42e5000-a43c6000 r-xs 00000000 03:01 1145425    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/emCfg.jar
    a43c6000-a43c8000 r-xs 00000000 03:01 1145429    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/OraInstallerNet.jar
    a43c8000-a43d6000 r-xs 00000000 03:01 1145430    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/share.jar
    a43d6000-a4534000 r-xs 00000000 03:01 1145426    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/xmlparserv2.jar
    a4534000-a454e000 r-xs 00000000 03:01 1145424    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/oneclick.jar
    a454e000-a4967000 r-xs 00000000 03:01 1145428    /tmp/OraInstall2009-08-10_06-53-41PM/oui/jlib/OraInstaller.jar
    a4967000-a497c000 r-xs 00000000 03:01 1177352    /tmp/OraInstall2009-08-10_06-53-41PM/ext/jlib/orai18n-mapping.jar
    a497c000-a49df000 r-xs 00000000 03:01 1177351    /tmp/OraInstall2009-08-10_06-53-41PM/ext/jlib/orai18n-utility.jar
    a49df000-a4a06000 r-xs 00000000 03:01 1145126    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/ext/sunjce_provider.jar
    a4a06000-a4acb000 r-xs 00000000 03:01 1145125    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/ext/localedata.jar
    a4acb000-a4af6000 r-xs 00000000 03:01 1145127    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/ext/sunpkcs11.jar
    a4af6000-a4af7000 ---p 00000000 00:00 0
    a4af7000-a4b77000 rwxp 00000000 00:00 0
    a4b77000-a4b7a000 ---p 00000000 00:00 0
    a4b7a000-a4bf8000 rwxp 00000000 00:00 0
    a4bf8000-a4bfb000 ---p 00000000 00:00 0
    a4bfb000-a4c79000 rwxp 00000000 00:00 0
    a4c79000-a4c7c000 ---p 00000000 00:00 0
    a4c7c000-a4cfa000 rwxp 00000000 00:00 0
    a4cfa000-a4efa000 r-xp 00000000 03:01 10994471   /usr/lib/locale/locale-archive
    a4efa000-a4efd000 ---p 00000000 00:00 0
    a4efd000-a4f7b000 rwxp 00000000 00:00 0
    a4f7b000-a4f7e000 ---p 00000000 00:00 0
    a4f7e000-a4ffc000 rwxp 00000000 00:00 0
    a4ffc000-a4ffd000 ---p 00000000 00:00 0
    a4ffd000-a5082000 rwxp 00000000 00:00 0
    a5082000-a509e000 rwxp 00000000 00:00 0
    a509e000-a509f000 rwxp 00000000 00:00 0
    a509f000-a50e4000 rwxp 00000000 00:00 0
    a50e4000-a50e5000 rwxp 00000000 00:00 0
    a50e5000-a50e9000 rwxp 00000000 00:00 0
    a50e9000-a50eb000 rwxp 00000000 00:00 0
    a50eb000-a512f000 rwxp 00000000 00:00 0
    a512f000-a5133000 rwxp 00000000 00:00 0
    a5133000-a514f000 rwxp 00000000 00:00 0
    a514f000-a51f0000 rwxp 00000000 00:00 0
    a51f0000-a5cd0000 rwxp 00000000 00:00 0
    a5cd0000-a5e30000 rwxp 00000000 00:00 0
    a5e30000-ae750000 rwxp 00000000 00:00 0
    ae750000-aef50000 rwxp 00000000 00:00 0
    aef50000-b2750000 rwxp 00000000 00:00 0
    b2756000-b275a000 rwxp 00000000 00:00 0
    b275a000-b27d6000 rwxp 00000000 00:00 0
    b27d6000-b28b6000 rwxp 00000000 00:00 0
    b28b6000-b47d6000 rwxp 00000000 00:00 0
    b47d6000-b5045000 r-xs 00000000 03:01 1112048    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/charsets.jar
    b5045000-b505a000 r-xs 00000000 03:01 1112076    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/jce.jar
    b505a000-b50df000 r-xs 00000000 03:01 1112077    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/jsse.jar
    b50df000-b5148000 rwxp 00000000 00:00 0
    b5148000-b7757000 r-xs 00000000 03:01 1112084    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/rt.jar
    b7757000-b7766000 r-xp 00000000 03:01 1145170    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libzip.so
    b7766000-b7768000 rwxp 0000e000 03:01 1145170    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libzip.so
    b7768000-b7789000 r-xp 00000000 03:01 1145150    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libjava.so
    b7789000-b778b000 rwxp 00020000 03:01 1145150    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libjava.so
    b778b000-b7796000 r-xp 00000000 03:01 1145169    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libverify.so
    b7796000-b7797000 rwxp 0000b000 03:01 1145169    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/libverify.so
    b7797000-b77a0000 r-xp 00000000 03:01 10759656   /lib/libnss_files-2.5.so
    b77a0000-b77a1000 r-xp 00008000 03:01 10759656   /lib/libnss_files-2.5.so
    b77a1000-b77a2000 rwxp 00009000 03:01 10759656   /lib/libnss_files-2.5.so
    b77a2000-b77a4000 r-xs 00000000 03:01 1145124    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/ext/dnsns.jar
    b77a4000-b77ac000 rwxs 00000000 03:01 1014834    /tmp/hsperfdata_oracle/2854
    b77ac000-b7b1c000 r-xp 00000000 03:01 1145177    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/client/libjvm.so
    b7b1c000-b7b3a000 rwxp 00370000 03:01 1145177    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/client/libjvm.so
    b7b3a000-b7f52000 rwxp 00000000 00:00 0
    b7f53000-b7f59000 r-xp 00000000 03:01 1145187    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/native_threads/libhpi.so
    b7f59000-b7f5a000 rwxp 00006000 03:01 1145187    /tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/native_threads/libhpi.so
    b7f5a000-b7f5b000 rwxp 00000000 00:00 0
    b7f5b000-b7f5c000 r-xp 00000000 00:00 0
    b7f5c000-b7f5d000 rwxp 00000000 00:00 0
    b7f5d000-b7f5e000 r-xp 00000000 00:00 0          [vdso]
    bfb6e000-bfb71000 ---p 00000000 00:00 0
    bfb71000-bfd6e000 rwxp 00000000 00:00 0          [stack]
    VM Arguments:
    jvm_args: -Doracle.installer.library_loc=/tmp/OraInstall2009-08-10_06-53-41PM/oui/lib/linux -Doracle.installer.oui_loc=/tmp/OraInstall2009-08-10_06-53-41PM/oui -Doracle.installer.bootstrap=TRUE -Doracle.installer.startup_location=/usr/local/oracle/database/install -Doracle.installer.jre_loc=/tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre -Doracle.installer.nlsEnabled="TRUE" -Doracle.installer.prereqConfigLoc=  -Doracle.installer.unixVersion=2.6.30.4-09-AUG-2009-V02 -Xmx150m
    java_command: oracle.sysman.oii.oiic.OiicInstaller -scratchPath /tmp/OraInstall2009-08-10_06-53-41PM -sourceLoc /usr/local/oracle/database/install/../stage/products.xml -sourceType network -timestamp 2009-08-10_06-53-41PM -responseFile /usr/local/oracle/database/responseFileV01.rsp -silent
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=
    CLASSPATH=
    PATH=/usr/bin:/usr/ccs/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/usr/local/oracle/app/oracle/product/11.1.0/db_1/bin:/usr/local/java/jdk1.6.0_15/bin:/home/oracle/bin:/usr/local/oracle/app/oracle/product/11.1.0/db_1/bin:/usr/local/java/jdk1.6.0_15/bin:/usr/local/oracle/database/install
    LD_LIBRARY_PATH=/tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386/client:/tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/lib/i386:/tmp/OraInstall2009-08-10_06-53-41PM/jdk/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x32a000], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x32a000], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x28e010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x28e010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x28e010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x290460], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x28fe90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x28fe90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x28fe90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x28fe90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    ---------------  S Y S T E M  ---------------
    OS:Red Hat Enterprise Linux Server release 5.3 (Tikanga)
    uname:Linux 2.6.30.4-09-AUG-2009-V02 #1 SMP Sun Aug 9 19:19:38 CEST 2009 i686
    libc:glibc 2.5 NPTL 2.5
    rlimit: STACK 8192k, CORE 0k, NPROC 2047, NOFILE 65536, AS infinity
    load average:0.12 0.03 0.01
    CPU:total 1 (cores per cpu 1, threads per core 1) family 6 model 15 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1137164k(322240k free), swap 2047k(2047k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for linux-x86, built on Dec 15 2006 02:25:41 by java_re with gcc 3.2.1-7a (J2SE release)
    [root@ccsaplinux0002 oracle]#

  • The JB installation experience and findings (possible bugs?)

    MOST IMPORTANT - if you phone appears hung - leave it alone! I would personally say if it appears hung longer than 15 minutes then it probably warrants a manual reboot at that point.
    I was on the road when I decided to start the OTA pull. I was on 4G and my phone switched to 3G (in an area I always have 4G) and there it stayed until the OTA update was downloaded. Took me ~45 minutes for it to finish downloading. It rebooted - ran through it's little droid robot status bar thingy. When it reached the point of "updating apps" it appeared frozen. The little circle hour glass wasn't spinning. It sat there for ~5 minutes and then the phone rebooted. When it came back up a window appeared stating "updating 3 apps". Then the phone continued to load on up. Immediately I started getting application updates available. Google+, Google (something else or another) and a few other apps I run such as Astro File Viewer.
    Under the hood of JB I found they added a new contact widget which I so badly missed having from my RAZR MAXX. I immediately added that and added the new contacts. Took the dog outside to pee and when I came back the first contact I added to the widget now also populated the 2nd spot (3 spots available). So it repeated itself. I went to edit it and then it changed back to the original contact I had put there. (bug?) I rebooted and the changes stuck.
    I've noticed the phone "hitches" (sliding gets a little jerky) when sliding screens when an announcement appears. This particular instance was when a new mail from my Exchange server was announced as well as gmail. (bug?)
    I benchmarked ICS and the best I could get with Quadrant on a fresh boot run was ~4900. I just ran it on JB and pulled 6097. That's pretty substantial gains right there folks!
    I also noticed the shutdown/plane mode/restart menu has changed. It actually makes better sense now IMHO.
    Over all I'm thankful Verizon "finally" got this update out. If I continue to have minor "hitches" I just might perform a good ole fashioned restore/wipe.

    MOST IMPORTANT - if you phone appears hung - leave it alone! I would personally say if it appears hung longer than 15 minutes then it probably warrants a manual reboot at that point.
    I was on the road when I decided to start the OTA pull. I was on 4G and my phone switched to 3G (in an area I always have 4G) and there it stayed until the OTA update was downloaded. Took me ~45 minutes for it to finish downloading. It rebooted - ran through it's little droid robot status bar thingy. When it reached the point of "updating apps" it appeared frozen. The little circle hour glass wasn't spinning. It sat there for ~5 minutes and then the phone rebooted. When it came back up a window appeared stating "updating 3 apps". Then the phone continued to load on up. Immediately I started getting application updates available. Google+, Google (something else or another) and a few other apps I run such as Astro File Viewer.
    Under the hood of JB I found they added a new contact widget which I so badly missed having from my RAZR MAXX. I immediately added that and added the new contacts. Took the dog outside to pee and when I came back the first contact I added to the widget now also populated the 2nd spot (3 spots available). So it repeated itself. I went to edit it and then it changed back to the original contact I had put there. (bug?) I rebooted and the changes stuck.
    I've noticed the phone "hitches" (sliding gets a little jerky) when sliding screens when an announcement appears. This particular instance was when a new mail from my Exchange server was announced as well as gmail. (bug?)
    I benchmarked ICS and the best I could get with Quadrant on a fresh boot run was ~4900. I just ran it on JB and pulled 6097. That's pretty substantial gains right there folks!
    I also noticed the shutdown/plane mode/restart menu has changed. It actually makes better sense now IMHO.
    Over all I'm thankful Verizon "finally" got this update out. If I continue to have minor "hitches" I just might perform a good ole fashioned restore/wipe.

  • Possible Bug with Drag-and-Drop Being Published via HTML5 - Getting "Undefined" Error When Dragging Object

    Hello,
    I came up with a way to use drag-and-drop interactions that will take advantage of file input so that I may create a drag-and-drop interaction that uses one draggable object over and over allowing multiple scoring/tracking possibilities.  Example use...is having the draggable object be dynamic in that it randomly changes its text so that a learner can drag a term it's possible classification.........thus allowing the possibility of having many terms easily loaded without having to redo a drag-and-drop interaction for each needed terms/classifications updates/changes.
    My Issue: When using a variable to represent the text for a draggable Smart Shape object, I'm getting the error message "undefined" when, clicking/pressing on the object, as well as during the drag of the object. This issue occurs when publishing the project in an HTML5 format.  Flash interestingly enough seems to work perfect...but we are not interested in publishing via Flash any longer.
    To better help you explore this error message, I've set up a test project so that you can see when and how the "undefined" message shows up during a drag-and-drop interaction.  I've also included the Captivate 8 project file used to make the exploration project I'm sharing in this post.
    Link to Captivate project I created for you all to explore "undefined" error message": http://iti.cscc.edu/drag_and_drop_bug/
    Link to this Captivate 8 Project file: http://iti.cscc.edu/drag_and_drop_bug.cptx
    It's pretty interesting how things react in this demo, please try the following actions to see some interesting happenings:
    Drag the Yellow (or variable drag box) to the drag target.
    Drag Black Hello square to Drag target and click undo or reset - watch the undefined message come up on the Yellow (or variable drag box).
    Drag the Yellow (or variable drag box) to the drag target and then use the undo or reset.
    Move both draggable boxes to the drag target and use the undo and reset buttons...
    Anyhow, I know you all are sharp and will run the demo through its paces.
    I'd really be very honored if anyone help me figure out how I could (when publishing out to HTML5) no longer have the "undefined" error message show up when using drag-and-drop with a variable for shape text. This technique has been well received at the college I work at...and I have many future project requests for using such an idea on a variety of similar interactions. I'd love see a solution or see if this might be a bug Adobe may be able to fix!
    I tried to find a solution to the issue documented here for quite some time, but I was not able to find anyone with this problem much less attempting the idea I'm sharing in the help request -  save the darn "undefined" message that comes up!
    Many thanks in advance for any help and/or direction that you all may be able to provide,
    Paul

    Hello,
    I just wanted to supply a minor update related to my drag-and-drop question/issue stated above:
    I did another test using Captivate 7, and found that the undefined error (publishing as HTML5) does not appear and the variable data remains visible - except the variable data turns very small and does not honor any font size related settings.
    I did go ahead and submit this to Adobe as a possible bug today.
    Thanks again for any help related to this issue.  If the issued documented above is solved, it will allow many amazing things to be done using Captivate's drag-and-drop for both regular type projects as well as interaction development for iBooks! 
    Matter of fact if this issue gets fixed, I'll publish a Blog entry (or video) on way's I've used Captivate's drag-and-drop to create dynamic learning activities for Higher Ed. and for use in iBooks.
    ~ Paul

  • Possible bug: Saving array with extended and double precision to spreadshee​t

    If one concatenates a double precision array and an extended precision array with the "build array" vi and then saves using "Write to Spreadsheet File" vi any digits to the right of the decimal place are set to zero in the saved file. This happens regardless of the format signifier input (e.g. %.10f) to the  "Write to Spreadsheet File" vi.
    I am on Vista Ultimate 32 bit and labview 9.0
    This is a possible bug that is easily circumvented by converting to one type before combining arrar to a spreadsheet. Nonetheless, it is a bug and it cost me some time.
    Solved!
    Go to Solution.
    Attachments:
    Spreadsheet save bug.vi ‏9 KB

    Hi JL,
    no, it's not a bug - it's a feature
    Well, if you would look more closely you would recognize the "Save to Spreadsheet" as polymorphic VI. As this polymorphic VI doesn't support EXT numbers internally (it only supports DBL, I64 and String) LabVIEW chooses the instance with most accuracy: I64 (I64 has 64 bits precision, DBL only 53...). So your options are:
    - set the instance to use as DBL (by right-click and "Select type...")
    - make a copy of this VI, save it with a different name and make it support EXT numbers (don't rework the polymorphic VI as you would break compatibility with other LV installations or future revisions)
    And yes, those coercion dots always signal some conversions - you should atleast check what's going on there...
    Message Edited by GerdW on 05-21-2010 10:01 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Copy and paste adjustment  problem/ possible bug.

    Hi all
    I have just encountered a very strange problem/ possible bug.
    I have been working on a file in photoshop cs5 that had come from lightroom 5.3. This was then saved (automaticaly becomes tiff file in Lightroom). I then wanted to make some more adjustments to it in lightroom (using local adjustment clarity). I then tried to copy the settings of the adjustment brush  from the tiff to the original raw file. This is where it gets very strange. The adjustments are copied but they are rotated ccw by 90 degrees!  I can replicate this every time.
    Could someone else try to see if this problem exists on their catalogs or if its a corrpution problem my end.

    Noted on the bug, thanks.
    1762hd wrote:
    Hi Geoff
    Heres the summary for bug report - please note this bug also affects radial filter/healing brush and crop
    Scenario
    1 open a portrait raw image in photoshop using render using lightroom (I am using cs5)
    2 back in lightroom make a change using the - adjustment brush/ radial filter/healing brush or crop - to the newly created tiff image.
    3 copy and paste this adjustment to the original raw file.
    problem
    all effects are rotated.

  • Nested tables and multiset operators in Oracle 10g

    Consider the following scenario:
    We have two identical relations R and S defined as:
    CREATE TABLE R(
    a INTEGER,
    b table_type)
    NESTED TABLE b STORE as b_1;
    CREATE TABLE S(
    a INTEGER,
    b table_type)
    NESTED TABLE b STORE as b_2;
    where table_typ is defined as
    CREATE TYPE table_typ AS TABLE OF VARCHAR2(8);
    Suppose we have two instances of R and S, each having one tuple as follows: R(1,table_typ('a','b')) and S(1,table_typ('b','c')).
    I would like to "merge" these two simple instances (e.g., achieve the effect of a simple SELECT * FROM R UNION SELECT * FROM S query) and obtain the following resulting instance: Result(1,table_typ('a','b','c')).
    Would this be possible in Oracle 10g? A simple UNION does not work (I got a "inconsistent datatypes: expected - got SCOTT.TABLE_TYP" error). I also took a look at the MULTISET UNION operator over nested tables available in Oracle 10g, but it doesn't seem to get me anywhere. Any help on this would be greatly appreciated.
    Thank you,
    Laura

    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE OR REPLACE TYPE table_type AS TABLE OF VARCHAR2 (8);
      2  /
    Type created.
    SQL> CREATE TABLE r(
      2    a INTEGER,
      3    b table_type)
      4    NESTED TABLE b STORE as b_1;
    Table created.
    SQL> CREATE TABLE s(
      2    a INTEGER,
      3    b table_type)
      4    NESTED TABLE b STORE as b_2;
    Table created.
    SQL> INSERT INTO r VALUES (1, table_type ('a', 'b'));
    1 row created.
    SQL> INSERT INTO s VALUES (1, table_type ('b', 'c'));
    1 row created.
    SQL> COLUMN c FORMAT A10;
    SQL> SELECT r.a, r.b MULTISET UNION DISTINCT s.b c
      2  FROM   r, s
      3  WHERE  r.a = s.a;
             A C
             1 TABLE_TYPE('a', 'b', 'c')
    SQL>

  • Possible Bug In Apex 4.0.2

    Hi Everyone.
    I would like to report what I think is a bug in Apex 4.0.2.
    If you go to my workspace on apex.oracle.com:
    Workspace = EEG
    Username = [email protected]
    Password = galaxy (all lowercase)
    Run the application: 37796 - Elie_Various_Goodies [no credentials are required]
    This app was imported from my 4.0.1 workspace at my job. On the page I created two Date Picker items, P1_BEGIN_DATE and P1_END_DATE. I set them up so that whenever a user selects a begin date, a dynamic action "MANAGE_DATES" fires and automatically sets P1_END_DATE to this selected begin date value. Now when a user goes to select an end date, the displayed calendar starts at the previously selected begin date rather than the default of "Today".
    All of this worked fine on my office (4.0.1) workspace. However, after exporting this app and then importing onto apex.oracle.com, none of this functionality would work. Even worse, whenever I try to select a begin date or even an end date, the selected dates never make it into the date picker fields. Displaying the "Session" window shows these fields as empty.
    It was only after I copied the two date picker fields and also re-created my dynamic action (P1_BEGIN_DATE2, P1_END_DATE2, MANAGE_DATES) did my functionality return.
    This behavior is quite strange. I can only think this is some sort of bug attributed to the export/import process when exporting a 4.0.1 app into a 4.0.2 workspace. I am not sure if this bizarre behavior happens with non-date picker items. Nor am I sure if this beavior would be repeated if I export/import from 4.0.2 into the another 4.0.2 environment.
    Another strange thing I noticed. If I change my date picker items to be "date picker (classic)" type items, the dynamic action does not work at all. This is true in both 4.0.2 and 4.0.1. I'm not sure if this a bug or not. It could be that the classic date picker is just not "javascript" enabled so to speak. If that is true, then it would have been nice if the docs would have warned us about this.
    Has anyone else seen this behavior?
    Thank you.
    Elie

    Hi Joel.
    First let me thank you for the warning about allowing "everyone" access to my workspace.
    You're correct, of course. Anyone could destroy anything within my workspace. I guess I was too trusting especially as I have seen many posts on the Forum where others have given access to their workspace so that responders can offer help. I really should be more discreet about this. Again, thank you. Needless to say, I have changed my password.
    With respect to the possible bug, the MANAGE_DATES dynamic action is intended to be a submit page because that is the only way I can see to get BOTH the P1_END_DATE date picker item as well as the end date textual field to be assigned the selected P1_BEGIN_DATE. I tried to use a dynamic action in which javascript sets the value of the end date textual field to the selected P1_BEGIN_DATE value. This works without the need to submit the page. Unfortunately, this does not cause the P1_END_DATE date picker item to default to this value. Instead, the default remains at today's date. This is why I finally resorted to a dynamic action that submits the page whenever a new value is selected (that is, a "change" event) from the P1_BEGIN_DATE date picker item.
    All of this works in my office 4.0.1 environment. However, I was puzzled when this fails under 4.0.2 on the hosted web site at apex.oracle.com. This is why I posted a "possible" bug in 4.0.2.
    I hope this all makes sense.
    One more thing, as already mentioned in my original post, this "defaulting a date picker" functionality does NOT work at all for the "classic" date picker items in both 4.0.1 nor in 4.0.2. I realize one can implement this functionality (I' guessing) my using, say, a "onChange" javascript call to submit the page. It's just funny that the "classic" date picker items are not acted upon by the dynamic action MANAGE_DATES that submits the page.
    Thank you.
    Elie

  • Possible bug? formatted number 0 displays as  4,294,967,295

    This is really two questions in one. First, I have a routine
    that sometimes provides a result of 0, which is *sometimes*
    displayed in an AdvancedDataGrid column as 4,294,967,295, which I'm
    assuming is somehow a meaningful number (largest int?). Anyway, I
    have an ADG with a column defined as:
    <mx:AdvancedDataGridColumn headerText="Remaining work"
    labelFunction="rem_work_fmt" textAlign="right" />
    The labelFunction called is shown below:
    private function rem_work_fmt(item:Object,
    column:AdvancedDataGridColumn):String
    var num:String =
    numberFormatter.format(item.get_remaining_work());
    trace ("result: " + num);
    return num;
    The trace output prints: "result: 0" as expected, but the
    number displayed in the grid is sometimes 0 and sometimes
    4,294,967,295.
    More weirdness, this only happens to the last column in the
    ADG. I call the same format logic on a different column and have
    never seen the wrong result. Also, the same underlying function
    "get_remaining_work()" is called elsewhere on the same data and the
    result is correctly displayed in a text field as 0.
    Second question, I've run into some other possible bugs,
    which I haven't reported because I found a work around. How does
    one do that in the beta program?

    lw1001,
    Bugs can be filed in the public bug base at
    http://bugs.adobe.com/flex/
    You'll need to sign up before you can submit bugs.
    Also, if you can attach the bug files to the bug report, it
    makes it a lot easier for Adobe to investigate.
    Let me know if you have any further questions/problems.
    Peter

  • A possible *bug* in java jcombobox

    Hi all,
    I think i found a possible bug in java jcombobox .. i am sure some of you must have already experienced it..
    supposedly you put a jcombobox in a jpanel
    returned the panel from a method to a calling method..
    and that method adds it to another panel that it had created to a frame..
    and if this happens dynamicaly at runtime, as only after u click a button..
    meaning : without adding the combobox or the immediate parent panelto the contentpane .. directly..
    Then,
    your combox's keylistener may not catch events fired.
    .. this has happened to me many times.. and always i could only find a way out
    .. by adding the combobox to panel that is loaded during startup itself and is
    .. not returned through a method call.
    Your opinions please ?
    'Harish.

    All components in a UI are created at run-time.
    When you create your JFrame you call pack() to align and resize the UI. This validates all the components, and sets the default focus on what ever component should have the focus at start up.
    When you create components and add them as children of another component you have to validate the child and parent. This can be done by calling JComponent.validate()
    As for keylisteners not getting called, this might be fixed if you call grabFocus on the new combobox. I can't see a reason why any listener would stop working.
    For me to really understand what your talking about. I'd need to see source code reproducing this problem.

  • Compound layout in View selector possible in OBIEE 10g but not in OBIEE 11

    Hi!
    I am Claire. I have created 3 compound layout and I wanted it to be included in my view selector. I noticed that I is not possible in BI 11g but was previously possible in Bi 10G. Kindly help me on this matter. The compound layout is not appearing in the available views in the EDIT VIEW selector Page.
    Your Prompt response on this matter is highly appreciated.
    Thank you.
    Claire

    Claire,
    This is no longer possible. And actually in OBIEE 10g it was only possible in the Original Compound layout. Meaning that if you created compound layout #2 you could not leverage "Compound Layout" (the original / default one) inside of a view selector or as a view inside "Compound Layout #2".
    If you look at the OBI 10g documentation you will see that it states that a Compound Layout is a "view" which can contain other views.
    In the OBI 11g documentation it states that the Compound Layout is a container.
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/appbuir.htm#BIEUG818
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/analyses.htm#CJABIHGC
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/appbuir.htm#BGBIDGDA
    This new nomenclature and definition is the delineating factor and the reason you can no longer achieve that functionality in the same way you did in 10g
    I hope that helps.
    Cheers,
    Christian
    http://www.artofbi.com

  • Can someone confirm a possible bug with Universal Access?

    Can someone confirm a possible bug with Universal Access?
    I have a Mac Pro 3,1, 10.7.1 but if you could confirm or not this possible bug with any model.
    In Energy Saver preference pane:
    Set Mac to never sleep.
    Set Display Sleep to ~2 minutes.
    In Desktop & Screen Saver:
    Set screen saver to start at ~1 minutes.
    In Universal Access:
    Check Enable access for assistive devices.
    Check radio button Zoom to On.
    Zoom in window not checked.
    Confirm that Zoom works by pressing:
    ⌥⌘= (option, command, =).
    Set screen back to normal by pressing ⌥⌘-.
    Let screen sleep after screen saver starts.
    Wake screen and see if ⌥⌘= still works.
    Thanks … Ken

    Other than the time intervals (smallest Screen Saver kick-in is 3 minutes), it works fine for me - at least I can still zoom in/out after waking the display.
    Tested on two different MacBook Pro models in 10.7.1

  • What are the changes / enhancements / or possible bugs in LR 5 Auto Tone

    Can anyone explain what, if any, changes, enhancements, or possible bugs were introduced in the functionality of Auto Tone since LR ver. 5.0. The reason I ask is that I get different results for the Exposure and Contrast adjustments when applying Auto Tone (using ver. 5.3) from the results  (using ver.5.0) shown in the book "Adobe Photoshop Lightroom 5 CIB" in the "Using Quick Develop in the Library module" section, step 4 on page 37. (This difference in results between LR versions was confirmed by the authors of LR5CIB.)

    I'm not sure about any new bugs but the radical exposure mis-calculations have been improved. I had photos that were over exposed to 5 (and even 10, believe it or not) that were exposed to a more appropriate 2 or so following the improvements (in Lr5.2 if memory serves). It's also less likely to radically underexpose.
    Enjoy, (in my opinion, it's much better)
    I think there may have even been further improvement in Lr5.3 but I can't swear to it - seems to preserve a little more contrast than in 5.2 - could be my imagination..
    Rob

  • On-demand process in page processing - possible bug?

    Hi
    Came across a possible bug today, certainly not a big one and unlike to affect many people but...
    1. Create an on-demand application process
    2. Create an on-demand page process that calls the application process
    3. Delete the application process.
    Now at this point, the page process is still available for editing/deleting etc.
    4. Copy the application.
    In the new version of the application, the page process shows as plain text in the application builder with no link to edit or delete it and when the page is run, it predictably fails at the processing point of the page process when it tries to find the application process (the id from wwv_flow_processing is shown in the error for the old application process).
    The only way to get rid of the page process is to select 'Edit All' and then select and delete it - then everything is hunky dory again.
    A minor issue I know, but maybe someone will have the same issue one day and stumble across this thread :)
    Cheers
    Ben

    At the moment I cannot say if your link can help. Right now the call of the On demand Process looks like this:
    Inside annonymous PL/SQL Region:
    <script type="text/javascript">
    get = new htmldb_Get(null,'||:APP_ID||'.,'APPLICATION_PROCESS=F_REPORT_NAME',0);
    gReturn = get.get();
    document.write(gReturn);
    </script>

  • Possible Bug: Migrating 6.1 to 7.0 - Uninstall of 6.1 removes 7.0 services

    This is a report of a possible bug. We are migrating from 6.1 to 7.0u2. On our Admin Node, we finished migrating multiple instances from 6.1 to 7.0 so we went uninstalled the 6.1 server components. This uninstall process removed the 7.0u2 services though not the instances from the Admin Node. The configuration folders in the 7.0 folder were not removed so we were able to delete then redeploy the instance. Note that the service name in 6.1 was the same as the service name in 7.0 (e.g. https-xyz). However, we had already used the 6.1 Administration Server to remove each individual 6.1 server prior to migrating the configuration to 7.0.

    sriram.natarajan wrote:
    hi
    what do you mean by "removed the services" but not the instances ? The uninstaller for the "Sun ONE" web server removed the Windows Services for the multiple instances that I created for the "Sun Java System" web server.
    If I am not mistaken, you probably didn't completely go through the migration log to make sure that what is migrated and what is not. please note that as part of migration all static content files and some other data files are not migrated. you are required to look into the migration log and make sure that you manually move those files into 7.0 location once the automated migration completes successfully. so, if you removed the 6.0 without migrating those static files , then you might see a whole bunch of 404 and other weird errors. Static content files have nothing to do with what I'm talking about. I had a 6.1 installation with a number of "servers" (what 7.0 calls instances). In order to migrate and keep the same service name (e.g. https-xyz), I had to first make a copy of the https-xyz configuration directory, use the 6.1 admin to remove the https-xyz (this would remove the https-xyz service), recopy the https-xyz configuration directory to the 6.1 install directory, then proceed with the automated migration.
    for more information, on what is migrated and what not, please refer to
    http://docs.sun.com/app/docs/doc/820-2201/gbhfb?l=en&a=view
    also ,please refer to the next link on the above pages related to 'files requiring manual migration'Once all my 6.1 instance migrations were complete and all that was left running from 6.1 was the Administration Server, I used the "Add/Remove Programs" control panel to uninstall the "Sun ONE Web Server 6.1" program. This uninstall process removed the Windows services created for the "Sun Java System" web server but did not remove the instances from the "Configuration Store" for the new web server.
    Unfortunately, the bug that I am reporting above has nothing to do with "a whole bunch of 404 and other weird errors. "

Maybe you are looking for

  • How can I tell if my motherboard and/or logic board is fried?

    Good evening all, I was just wondering if anybody can tell me the way to find out if my old power mac mobo is fried, or weather it's the logic board or the power supply. When I try to boot it up there is no start up chime, there is no white power on

  • HDMI Audio Output doesn't work in Windows on Retina MBP

    When I'm using Windows 7 (with BootCamp) on my Retina MacBook Pro, I like to connect it to my TV using the HDMI out to watch movies. However, when in Windows, it doesn't seem to output the audio to the TV. Instead, it plays through the MacBook's inte

  • Unable to establish a session with the Address Book Server

    I have installed the following Sun Java System Messaging Server 7 Update 3 Sun Java System Calendar Server 6.3 Sun Java System Directory Server 6.3.1 GlassFish Enterprise Server 2.1 Patch 2 with HADB support Delegated Administrator 7 Sun Convergence

  • Is there a way to turn screen off manually?

    Just wondering if there is a way or key to press to turn the display off. I have my imac screen set up to turn off after 10 minutes and would like to keep it that way but there are times when I would like to turn it off right away but keep the comput

  • Cant launch SunMC windows JAVA console under Sun VirtualBox 2.0.0

    Hi, Has anyone managed to successfully launch the Java console under Sun VirtualBox? I'm using SunMC 3.6.1, Mac OS X 10.5.4 and Sun VirtualBox 2.0.0 When I attempt I get the usual messages "Connection establish. Authenticating user" "Login Successful