ORA-15072 when using external redenacy?

Hello -
I am getting ORA-15072 (command required at least one failure groups) when using external redundancy. I am using asmlib on Linux, and I have a feeling that it it a multipathing issue. Here are the output from some of my commands:
[root@ctolinuxpoc01 init.d]# ./oracleasm listdisks
VOL1
VOL10
VOL11
VOL12
VOL2
VOL3
VOL4
VOL5
VOL6
VOL7
VOL8
VOL9
SQL> select name, path, state from v$asm_disk;
NAME
PATH
STATE
ORCL:VOL1
NORMAL
ORCL:VOL2
NORMAL
NAME
PATH
STATE
ORCL:VOL3
NORMAL
ORCL:VOL4
NAME
PATH
STATE
NORMAL
Why would I be getting ORA-15072 with external redundancy (using asmlib)?
Thanks in andvance!
Mike

The header status is showing as "unknown"... Could this be part of the issue?
Thanks,
Mike

Similar Messages

  • URGENT : ORA 302000 when using TEXT_IO.fopen

    Hi,
    I get this error ORA 302000 when using TEXT_IO package, the code I use is
    new_file:=text_io.fopen('c:\text.txt','r')
    i don't have the description of this ORA 302000 , pls does anyone have it?

    Hi,
    I know it's been 2 years but it's still up to date for me.
    I tried the suggested piece of code to trace the error but it did not bring anything more
    EXCEPTION
    When Others then
    srw.Message( 2, 'EXCEPTION ' || SQLCODE || ' in common package. Can not open the file ');
    IF SQLCODE = -302000 then
    LOOP
    EXIT WHEN TOOL_ERR.NERRORS = 0;
    SRW.MESSAGE( 667, TO_CHAR(TOOL_ERR.CODE) || ': ' || TOOL_ERR.MESSAGE);
    TOOL_ERR.POP;
    END LOOP;
    END IF;
    srw.Message( 3, 'EXCEPTION ' || SQLCODE || ' in com package. Can not open the file ' || I_Desname || ' : ' || SQLERRM );
    Only Message 2 and 3 are displayed in the trace file
    Any other suggestion?
    Manu

  • Error ORA-06502 When using function REPLACE in PL/SQL

    Hi,
    I have a PL/SQL procedure which gives error 'Error ORA-06502 When using function REPLACE in PL/SQL' when the string value is quite long (I noticed this with a string 9K in length)
    variable var_a is of type CLOB
    and the assignment statement where it gives the error is
    var_a := REPLACE(var_a, '^', ''',''');
    Can anyone please help!
    Thanks

    Even then that shouldn't do so:
    SQL> select overload, position, argument_name, data_type, in_out
      2  from all_arguments
      3  where package_name = 'STANDARD'
      4  and object_name = 'LPAD'
      5  order by 1,2
      6  /
    OVERLOAD   POSITION ARGUMENT_NAME                  DATA_TYPE                      IN_OUT
    1                 0                                VARCHAR2                       OUT
    1                 1 STR1                           VARCHAR2                       IN
    1                 2 LEN                            BINARY_INTEGER                 IN
    1                 3 PAD                            VARCHAR2                       IN
    2                 0                                VARCHAR2                       OUT
    2                 1 STR1                           VARCHAR2                       IN
    2                 2 LEN                            BINARY_INTEGER                 IN
    3                 0                                CLOB                           OUT
    3                 1 STR1                           CLOB                           IN
    3                 2 LEN                            NUMBER                         IN
    3                 3 PAD                            CLOB                           IN
    4                 0                                CLOB                           OUT
    4                 1 STR1                           CLOB                           IN
    4                 2 LEN                            NUMBER                         INI wonder what happened?

  • When using external speakers, they won't unmute

    I am using a U530 Touch with Realtek HD Audio driver version 6.0.1.7535 and Windows 10 build 10240. When using external speakers, everything works fine, except when I mute speakers they will not unmute without unplugging the 3.5 mm speaker jack and plugging it back in to the unit. Using the laptop's internal speakers does not produce the same proplem (mute/unmute works fine). I have looked at every setting and find nothing, nor have I seen this problem reported in the forums. HELP!!!

    Rattle Snake wrote:
    Firstly how do I know if this is a 1st or 2nd generation shuffle? Bought in May at Palo Alto Store but there doesn't seem to be anything on the packaging to tell me.
    1st Gen shuffle was white, plastic, and shaped like a chewing gum package.
    2nd Gen shuffle is aluminum, with a spring clip on the back and comes in silve and assorted colors...
    When the shuffle is connected to the external speakers(bought at the same
    time) it only plays about 5 songs and then stops.
    Does it play through the earphones after this happens? Does it still have power or is the battery depleted after it stops playing?
    What Brand & model are the speakers?

  • ORA-31020 when using XML with external DTD or entities

    I'd like to parse XML documents against a modular DTD that references other DTDs. This works fine with Oracle 9i. But after upgrading to 11g, the parsing of XML-instances fails and DBMS_XMLPARSER.parseClob produces ORA-31020.
    The same error occurs even if I simply try to store XML with a reference to an external DTD as xmltype:
    SQL> select xmltype('<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE ewl-artikel SYSTEM "http://www.foo.com/example.dtd"><test>123</test>') from dual;
    ERROR:
    ORA-31020: Der Vorgang ist nicht zulässig, Ursache: For security reasons, ftp
    and http access over XDB repository is not allowed on server side
    ORA-06512: in "SYS.XMLTYPE", Zeile 310
    ORA-06512: in Zeile 1
    How can I use external DTDs on remote servers in order to parse XML in an 11g database??? Any ideas for a workaround? Thanks in advance!

    This is my PL/SQL validation procedure:
    procedure validatexml (v_id in number default 0) is
    PARSER DBMS_XMLPARSER.parser;
    DTD_SOURCE clob;
    DTD_DOCUMENT xmldom.DOMDocumentType;
    XML_INSTANCE xmltype;
    BEGIN
    -- load DTD from XDB repository
    SELECT httpuritype('http://example.foo.de/app1/DTD1.dtd').getclob() into DTD_SOURCE from dual;
    -- load XML instance
    select co_xml into XML_INSTANCE from tb_xmltab where co_id=v_id;
    -- parse XML instance
    PARSER := DBMS_XMLPARSER.newParser;
    xmlparser.setValidationMode( PARSER , false);
    xmlparser.parseDTDClob( PARSER , DTD_SOURCE , 'myfirstnode' );
    DTD_DOCUMENT := xmlparser.getDoctype( PARSER );
    xmlparser.setValidationMode( PARSER , true );
    xmlparser.setDoctype( PARSER , DTD_DOCUMENT );
    DBMS_XMLPARSER.parseClob( PARSER , v_xml );
    DBMS_XMLPARSER.freeParser(PARSER);
    htp.print('<P>XML instance succesfully validated!<P>');
    end validatexml;

  • How to blank laptop screen when using external monitor/

    Hi there
    I need some help with figuring out how to configure my xorg.conf for my Arch Linux 64 bit installation on a HP Pavilion dv 5000 laptop so that I can automatically blank my laptop screen when using an external monitor.  I have Arch Linux installed along with Ubuntu Feisty.  In Ubuntu my external monitor (Viewsonic 1912WB) was not detected at the time of installation but with the native 1280X800 resolution that is good for the laptop takes effect for the external monitor automatically when the external monitor is plugged in.  The laptop monitor goes blank when the external monitor is plugged in.
    In my Arch Linux installation I have not been able to configure a dual head configuration using the ATI Radeon drivers (fglrx).  I have the native 1280X800 resolution set up for the laptop monitor and this resolution takes effect for the external monitor also.  However the laptop monitor also continues to function when the external monitor is plugged in.  I would like to blank the laptop monitor when using the external monitor.
    I am attaching my Arch Linux xorg.conf and the Ubuntu xorg.conf below.  Thanks for anyone who can help, I am having a lot of difficulty in figuring out how to set up xorg.conf among all the things that I have had to learn so far in Linux and I am a relative newcomer to the whole thing. I have tried to compare the two xorg.conf files and edit my Arch xorg.conf in accordance with the Ubuntu one but it did not work and I keep getting errors!
    I am using XFCE as my Desktop environment.
    Arch Linux xorg.conf
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this  section  is used to specify
    # which dynamically loadable modules to load.
    # Files section.  This allows default font and rgb paths to be set
    # Server flags section.
    # Input devices
    # Core keyboard's InputDevice section
    # Core Pointer's InputDevice section
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices.  This is for example only.  Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    #    Identifier  "Mouse2"
    #    Driver      "mouse"
    #    Option      "Protocol"      "MouseMan"
    #    Option      "Device"        "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball"
    #    Driver     "magellan"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball2"
    #    Driver     "spaceorb"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen0"
    #    Driver     "microtouch"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "1412"
    #    Option     "MaxX"          "15184"
    #    Option     "MinY"          "15372"
    #    Option     "MaxY"          "1230"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen1"
    #    Driver     "elo2300"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "231"
    #    Option     "MaxX"          "3868"
    #    Option     "MinY"          "3858"
    #    Option     "MaxY"          "272"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonThreshold"       "17"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    # Device configured by xorgconfig:
    # Screen sections
    # Any number of screen sections may be present.  Each describes
    # the configuration of a single screen.  A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present.  Each describes
    # the way multiple screens are organised.  A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option.  In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    # Section "DRI"
    #    Mode 0666
    # EndSection
    Section "ServerLayout"
    # The Identifier line must be present
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens.  The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen.  In this example, screen 2 is located to the
    # right of screen 1.
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used.  Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
        Identifier     "Simple Layout"
        Screen      0  "aticonfig-Screen[0]" 0 0
        InputDevice    "Mouse1" "CorePointer"
        InputDevice    "Keyboard1" "CoreKeyboard"
    EndSection
    Section "Files"
    # The location of the RGB database.  Note, this is the name of the
    # file minus the extension (like ".txt" or ".db").  There is normally
    # no need to change the default.
    #    RgbPath    "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    #    FontPath   "/usr/share/fonts/TTF"
    #    FontPath   "/usr/share/fonts/Type1"
    #    FontPath   "/usr/lib/X11/fonts/local/"
    #    FontPath   "/usr/lib/X11/fonts/misc/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/Speedo/"
    #    FontPath   "/usr/lib/X11/fonts/Type1/"
    #    FontPath   "/usr/lib/X11/fonts/TrueType/"
    #    FontPath   "/usr/lib/X11/fonts/freefont/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/"
    # The module search path.  The default path is shown here.
    #    ModulePath "/usr/lib/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
    EndSection
    Section "Module"
    # This loads the DBE extension module.
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    # This loads the font modules
    #    Load        "type1"
    # This loads the GLX module
    #    Load       "glx"
    # This loads the DRI module
    #    Load       "dri"
        Load  "dbe"      # Double buffer extension
        SubSection "extmod"
            Option        "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
        Load  "freetype"
    #    Load        "xtt"
    EndSection
    Section "InputDevice"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    #    Option     "Protocol"      "Xqueue"
    #    Option    "Xleds"      "1 2 3"
    #    Option "LeftAlt"     "Meta"
    #    Option "RightAlt"    "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults).  For example, for a non-U.S.
    # keyboard, you will probably want to use:
    #    Option "XkbModel"    "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    #    Option "XkbModel"    "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    #    Option "XkbLayout"   "de"
    # or:
    #    Option "XkbLayout"   "de"
    #    Option "XkbVariant"  "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    #    Option "XkbOptions"  "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    #    Option "XkbRules"    "xorg"
    #    Option "XkbModel"    "pc105"
    #    Option "XkbLayout"   "us"
    #    Option "XkbVariant"  ""
    #    Option "XkbOptions"  ""
    #    Option "XkbDisable"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option        "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
        Option        "XkbRules" "xorg"
        Option        "XkbModel" "pc104"
        Option        "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    # Identifier and driver
    # the following line.
    #    Option "Protocol"    "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    #    Option "Resolution"    "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    #    Option "BaudRate"    "9600"
    #    Option "SampleRate"    "150"
    # Mouse wheel mapping.  Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7.   Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    #    Option "Emulate3Buttons"
    #    Option "Emulate3Timeout"    "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    #    Option "ChordMiddle"
        Identifier  "Mouse1"
        Driver      "mouse"
        Option        "Protocol" "Auto"    # Auto detect
        Option        "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
        Option        "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    EndSection
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    #    HorizSync    30-64         # multisync
    #    HorizSync    31.5, 35.2    # multiple fixed sync frequencies
    #    HorizSync    15-25, 30-50  # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        Identifier   "My Monitor"
        HorizSync    30.0 - 62.0
        VertRefresh  50.0 - 70.0
    EndSection
    Section "Monitor"
        Identifier   "aticonfig-Monitor[0]"
        Option        "VendorName" "ATI Proprietary Driver"
        Option        "ModelName" "Generic Autodetecting Monitor"
        Option        "DPMS" "true"
    EndSection
    Section "Device"
    # The chipset line is optional in most cases.  It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    #    Chipset    "generic"
    # The Driver line must be present.  When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module.  Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for.  When this line isn't present, a device
    # section can only match up with the primary video device.  For PCI
    # devices a line like the following could be used.  This line should not
    # normally be included unless there is more than one video device
    # intalled.
    #    BusID      "PCI:0:10:0"
    #    VideoRam    256
    #    Clocks    25.2 28.3
        Identifier  "Standard VGA"
        Driver      "vga"
        VendorName  "Unknown"
        BoardName   "Unknown"
    EndSection
    Section "Device"
        #VideoRam    131072
        # Insert Clocks lines here if appropriate
        Identifier  "* Generic VESA compatible"
        Driver      "vesa"
    EndSection
    Section "Device"
        Identifier  "aticonfig-Device[0]"
        Driver      "fglrx"
    EndSection
    Section "Screen"
        Identifier "Screen 1"
        Device     "* Generic VESA compatible"
        Monitor    "My Monitor"
        DefaultDepth     24
        SubSection "Display"
            Viewport   0 0
            Depth     8
            Modes    "1280x800" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
            Modes    "1280x800" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
            Modes    "1280x800" "800x600" "640x480"
        EndSubSection
    EndSection
    Section "Screen"
        Identifier "aticonfig-Screen[0]"
        Device     "aticonfig-Device[0]"
        Monitor    "aticonfig-Monitor[0]"
        DefaultDepth     24
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection
    Ubuntu xorg.conf
    # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    # Edit this file with caution, and see the xorg.conf(5) manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #   sudo dpkg-reconfigure -phigh xserver-xorg
    Section "Files"
        FontPath    "/usr/share/fonts/X11/misc"
        FontPath    "/usr/share/fonts/X11/cyrillic"
        FontPath    "/usr/share/fonts/X11/100dpi/:unscaled"
        FontPath    "/usr/share/fonts/X11/75dpi/:unscaled"
        FontPath    "/usr/share/fonts/X11/Type1"
        FontPath    "/usr/share/fonts/X11/100dpi"
        FontPath    "/usr/share/fonts/X11/75dpi"
        # path to defoma fonts
        FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection
    Section "Module"
        Load    "i2c"
        Load    "bitmap"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "vbe"
    EndSection
    Section "InputDevice"
        Identifier    "Generic Keyboard"
        Driver        "kbd"
        Option        "CoreKeyboard"
        Option        "XkbRules"    "xorg"
        Option        "XkbModel"    "pc105"
        Option        "XkbLayout"    "us"
    EndSection
    Section "InputDevice"
        Identifier    "Configured Mouse"
        Driver        "mouse"
        Option        "CorePointer"
        Option        "Device"        "/dev/input/mice"
        Option        "Protocol"        "ImPS/2"
        Option        "ZAxisMapping"        "4 5"
        Option        "Emulate3Buttons"    "true"
    EndSection
    Section "InputDevice"
        Identifier    "Synaptics Touchpad"
        Driver        "synaptics"
        Option        "SendCoreEvents"    "true"
        Option        "Device"        "/dev/psaux"
        Option        "Protocol"        "auto-dev"
        Option        "HorizScrollDelta"    "0"
    EndSection
    Section "InputDevice"
        Driver        "wacom"
        Identifier    "stylus"
        Option        "Device"    "/dev/input/wacom"
        Option        "Type"        "stylus"
        Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection
    Section "InputDevice"
        Driver        "wacom"
        Identifier    "eraser"
        Option        "Device"    "/dev/input/wacom"
        Option        "Type"        "eraser"
        Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection
    Section "InputDevice"
        Driver        "wacom"
        Identifier    "cursor"
        Option        "Device"    "/dev/input/wacom"
        Option        "Type"        "cursor"
        Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection
    Section "Device"
        Identifier    "ATI Technologies Inc ATI Radeon XPRESS 200M 5955 (PCIE)"
        Driver        "ati"
        BusID        "PCI:1:5:0"
    EndSection
    Section "Monitor"
        Identifier    "Generic Monitor"
        Option        "DPMS"
    EndSection
    Section "Screen"
        Identifier    "Default Screen"
        Device        "ATI Technologies Inc ATI Radeon XPRESS 200M 5955 (PCIE)"
        Monitor        "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
            Depth        1
            Modes        "1280x800"
        EndSubSection
        SubSection "Display"
            Depth        4
            Modes        "1280x800"
        EndSubSection
        SubSection "Display"
            Depth        8
            Modes        "1280x800"
        EndSubSection
        SubSection "Display"
            Depth        15
            Modes        "1280x800"
        EndSubSection
        SubSection "Display"
            Depth        16
            Modes        "1280x800"
        EndSubSection
        SubSection "Display"
            Depth        24
            Modes        "1280x800"
        EndSubSection
    EndSection
    Section "ServerLayout"
        Identifier    "Default Layout"
        Screen        "Default Screen"
        InputDevice    "Generic Keyboard"
        InputDevice    "Configured Mouse"
        InputDevice     "stylus"    "SendCoreEvents"
        InputDevice     "cursor"    "SendCoreEvents"
        InputDevice     "eraser"    "SendCoreEvents"
        InputDevice    "Synaptics Touchpad"
    EndSection
    Section "DRI"
        Mode    0666
    EndSection

    Xrandr 1.2 provides means for this. But today the only supported configuration is xorg-server-1.3 + xf86-video-intel-2.0. So for Radeon you'll have to wait for drivers that support Randr 1.2.
    On my laptop (Thinkpad x60s) that would be:
    xrandr --output VGA --auto
    xrandr --output LVDS --off

  • Empty report returned from WEBI and Crystal report when using external hier

    Hi,
    WEBI and Crystal report build from BEX query returned empty report when we used external hierarchy 0PROFIT_CTR.  In BEX we don't have any problems with it.
    No authority check is perfomed on the hierarchy when we start the report in WEBI/Crystal. Only check on the hierarchy is performed when the root authorization is assigned to the user

    We using BO4  SP12

  • How to remove namespaces in mapping when using External Definition

    Hi,
    I read in the blog (/people/sameer.shadab/blog/2005/12/05/how-to-remove-namespaces-in-mapping--xi) that you are able to remove namespaces in mapping by deleting the value from XML Namespace under the Message Type. However, is it possible to do this when you are using External Definition (xsd) ? The blog only describe how to do this if you define a Data Type.

    Hi ,
    No ..it is not possible to remove the namespace once you imported into IR of external defintion.You can remove your namesapce from external definition before importing into IR.
    Sekhar

  • Kernel_task high cpu usage when using external monitor at 1080p

    Specs
    Model Name:          MacBook Pro
      Model Identifier:          MacBookPro6,2
      Processor Name:          Intel Core i7
      Processor Speed:          2.66 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache (per core):          256 KB
      L3 Cache:          4 MB
      Memory:          4 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MBP61.0057.B0C
      SMC Version (system):          1.58f15
    My external display is a Samsung PX2370 connected to my MBP using an HDMI cable with a HDMI-to-miniDP adapter
    I first noticed this after the last EFI update several months back. At first I thought kernel_task eats up too much cpu cycles whenever an external display is attached, but it turns out this only happens when the external display is set to 1080p. When external display is set to 720p, kernel_task is pretty much normal (~5% cpu usage) but rises up to ~150% cpu usage once the external display is set to 1080p.
    kernel_task cpu usage is also with normal range when my MBP is connected to a Samsung LCD TV at 720p.
    Anyone having the same problem or know of any fix/workarounds?

    Seems like the problem persists when playing a 720p video on the external display set to 720p. To sum it up
    Video Resolution
    Main Display
    External  (1280x720)
    External (1920x1080)
    480p
    ok
    fluctuating kernel_task cpu usage (~5 to ~150 cpu usage)
    high kernel_task cpu usage
    720p
    ok
    high kernel_task cpu usage
    high kernel_task cpu usage
    1080p
    ok
    high kernel_task cpu usage
    high kernel_task cpu usage

  • Desktop acting weird when using External Monitor.

    Hey guys,
    Just wondering if people have been having this weird "problem" when using an external monitor on OS X Mavericks. Though not really an issue that makes the OS/Mac usable, it's more of a quality of life thing (and it's really annoying for someone who likes things to be where I put them).
    Anyways, the problem is that when I use my external monitor when at home, I have it set as the main display while the monitor on my MacBook Pro 15" acts as the extended/secondary monitor. No problems in functionality, BUT, the icons on my desktop always move while my external monitor is in use.
    I usually do my work while using my external monitor and I use my desktop as my initial location to save my work files before moving them to an appropriate folder. However, revert back to not using the external monitor, everything just gets muddled up on top of eachother, stuff (sometimes) get missplaced and it just becomes a hassle to rearrange my desktop to how it was before.
    tl:dr: desktop icons move when I use my external monitor as my main display.
    So does anyone know if this is a problem that can be fixed, or is it an issue my monitor being a 3rd party model and old?
    (Monitor HP w2448h — http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay?ac .admitted=1391518927628.876444892.199480143&javax.portlet.begCacheTok=com.vignet te.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.pr p_ba847bafb2a2d782fcbb0710b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-c01 482166-8%257CdocLocale%253D%257CcalledBy%253D&javax.portlet.tpst=ba847bafb2a2d78 2fcbb0710b053ce01&sp4ts.oid=3454237)

    Hi BradnBeaverton,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Whether or not you are using an Apple Cinema Display, the behaviour you are describing is the same:
    Apple Cinema Display: Troubleshooting steps
    http://support.apple.com/kb/HT2810
    Desktop icons move after screen resolution change
    Changing the screen resolution affects the display of information on your screen, especially changing to a smaller resolution. The operating system may automatically reposition icons after you change the screen resolution.
    OS X Mountain Lion: About the Display pane of System Preferences
    http://support.apple.com/kb/HT5369
    Cheers,
    - Judy

  • Noise when using external monitor

    When I connect my MacBook Pro to an external LCD screen and also connect my soundoutput to an external amplifier I get noise in the speakers. What can I do to avoid this?
    It gets even worse when using powercord on my MacBook.

    this is caused by processor noise/power interference. one fix is to turn the volume all the way up on the macbook pro,and adjust volume on the amplifier.

  • Macbook Pro 15 Late 11 extreme fans noise when using external monitor

    Dear Apple, recently I bought Macbook Pro 15 Late 11. I really love it's speed and new OS X Lion, BUT this Macbook really noisy when I use external monitor and keyboard. I work on external monitor all the time. I don't care about how hot my Macbook is when I'm on external monitor. Let it just be hot and quiet.
    P.S. Example. I run Ableton Live and have 6200 RPM working on external monitor (awfully loud!). CPU 90% idle. When I switch off external monitor and use internal one, RPM drops down to 4500 with the same Ableton work session. By the way, I don't need cool graphic card. Apple, let our work days be quiet.

    I did that and it didn't help. It's common problem with an external monitor. Here are some links:
    http://forums.macrumors.com/showthread.php?t=1162550
    http://www.ivy-rose.co.uk/Articles/Macbook-Pro-Cooling-Issues

  • When using external-scheme what is still stored on-heap?

    Hi all,
    If I have a scheme like this...
    <distributed-scheme>
        <scheme-name>distributed-scheme</scheme-name>
        <service-name>TestDistributedService</service-name>
        <backing-map-scheme>
          <external-scheme>
            <lh-file-manager>
              <directory>/temp/odc-data</directory>
            </lh-file-manager>
          </external-scheme>
        </backing-map-scheme>
    </distributed-scheme>...when I put data into a cache what is still stored on the heap?
    When I do a test I can see that obviously the data is not on the heap as I can add massively more entries before I run out of memory.
    Using the VisualVM tool's memory sampler I can see a similar number of instances of com.tangosol.util.Binary as I have entries - so are they keys still on the heap?
    If I add indexes then I can see that these are on the heap, so I will have keys and indexed values on the heap. I end up with twice as many instances of Binary as I have put entries, which makes sense as the index contains a references to the Binary keys.
    The reason I ask is because I configured a "Dev" version of our application that uses <external-scheme> everywhere you would normaly use a <local-scheme> so we can run a version of our application for Dev testing on development machines with limited RAM. It needed a few tweaks and a custom DefaultConfigurableCacheFactory but seems to work fine. I am now trying to figure out just how much space we save and how much "data" is still on the heap.
    Cheers,
    JK

    Thanks David.
    So with an external scheme we will be able to save the amount of space taken by the cache values. Now if I could just shift the indexes (which take quite a bit of space) that would be a bonus. I know it sort of defeats the point of having an index but I am trying to run the app on a small Dev server so I am more interested that it works functionally than how fast it is. If the app was 3.6 I might be able to do something clever with custom indexes - then again we could just remove the indexes.
    Cheers,
    JK

  • ORA-03113 when using connect by in a report query ?

    Hi,
    Oracle 10g r2, ApEx 4.0.2.
    I have a classic report on page zero, I need the following query to display my data :
    select
         distinct '<input class="radio_report_search_photos" name="radio_selected_photo" type="radio" />' as "Sel",
         phot_id,
         phot_description,
         '<img alt="" id="thumb_'||phot_id||'" class="clickable_thumb" src="#OWNER#.show_photo?v_id_photo='||phot_id||'" />' as "Thumb",
         substr(SYS_CONNECT_BY_PATH(kw_text, ', '),3) keyword_list
    from
         select
              phot_id,
              phot_description,
              kw_id,
              kw_text,
              pkw_kw_id,
              pkw_phot_id,
              count(*) OVER(partition by phot_id ) cnt,
              ROW_NUMBER() OVER(partition by phot_id order by kw_text) seq
         from
              photos,
              photos_keywords,
              keywords
         where
              phot_id = pkw_phot_id
              and pkw_kw_id = kw_id
              and contains(kw_text,nvl(:P0_SEARCH_PHOTO_KW,'%')) > 0
    where
         seq = cnt
    start with
         seq = 1
    connect by prior
         seq+1 = seq
    and prior
         phot_id = phot_idIt works great when executing from any software. I get the expected results.
    But yhen I try to put it in the report region source, I get an ORA-03113 when I apply changes...
    It works if I remove CONNECT BY PRIOR and SYS_CONNECT_BY_PATH from the query.
    Why ?
    Thanks.
    Details :
    url : https://my_host.ch/pls/htmldb_dev/wwv_flow.accept
    Error :
    Fri, 22 Jul 2011 09:25:38 GMT
    ORA-03113: end-of-file on communication channel

    OK I now use xmlagg & xmlelement instead of connect by.
    Sorry for not providing any solution.
    Yann.

  • Firewire Problem When Using External Burner

    Before I go into detail about my problem let me say that I contacted the manufacturers CS and they were unable to help (sent a new burner and I still had the same problem).
    I finally got an external DVD burner, the lacie d2 with Lightscribe, and I plugged it in the firewire port, updated it with all the latest drivers and tried burning some cd's from an iTunes (7.1) playlist. It checked the media, started to burn the first song and and immediately went to finishing the disc burning without going through the other songs. But then it just hung there (the player started running, I could hear it, but when it froze after the 1st song he player just quieted down). I left it alone for awhile figuring it would eject the disc but nothing happened. I was unable to stop the process, quit iTunes or even eject the disc. Eventually I had to force quit and restart the computer.
    I tried it using Toast but I got an error the first time and the second time I tried it froze on the burn screen. The funny thing is I'm able to burn when using the usb connection (it's really slow though, 1.0) and I'm able to rip cd's when connected via friewire but burning causes all types of problems.
    The burner shows up on the system profile (vendor supported after updating with drivers), I've switched firewire cables, and used both ports on the iMac and the dvd burner, and after contacting Lacie they sent me a second burner but the problem persisted. I use a lacie external hard drive and never had a problem with it so I was wondering if anyone had an explanation or a similar problem. If not I was thinking of sending this second one back and trying the new Sony firewire dvd burners.
    And one last thing, I got this because my superdrive gave up on me, although it's still recognized in the system profiler, it just doesn't start up if I put in a cd or dvd.
    Please help as I'm at the end of my rope with this burner.
    iMac G4 Flat Screen   Mac OS X (10.4.9)  

    I'm curious if the internal superdrive's inaccessibility to the system and
    the firewire port issues are related; or share a common thread in how
    they may require one action to try and make them work.
    Aside from that speculation, have you tried seeing what the Apple
    Hardware Test (boot the computer from it) says in regard to this
    matter and the details of any error codes it may generate? And
    if you can run Disk Utility from the installer OSX disc#1 from the
    external FireWire disc drive, to see if any maintenance can help
    the system, that would be nice.
    There also are third-party freeware disc burn utilities; and a few share-
    ware ones that are quite good. They usually will work in problematic
    situations where the hardware is OK and the basic OS X is, too; but
    for some reason the external FW or internal replacement Superdrive
    won't burn a disc or does it partially; or improperly. I've used my disc
    burners so rarely I am not a great one to improvise here; but I did get
    Burn 1.7u (v12) http://burn-osx.sourceforge.net and it does work well.
    Can you boot the computer from any of the DVD - Firewire external
    recorder/players you have or had? You should be able to boot the OSX
    from the installer disc#1 from a good external; but some may not do it.
    Was there any issue in the procedures you described before upgrading
    the system to 10.4.9? How about Quicktime 7.1.5 or iTunes 7.1.1?

Maybe you are looking for