Databse start up via rman or sql

how to connect with Oracle after you shut down DB?

Hi,
Could you please elaborate your question?
To startup the database in a previously connected rman-session, you just do
RMAN> startup [nomount]If you've terminated the rman-session, you might need to first do a "set dbid=$DATABASEID".
In sqlplus, you connect locally, and issue the startup-command.
sqlplus / as sysdba
startupRecommended reading:
http://docs.oracle.com/cd/B28359_01/backup.111/b28270/toc.htm
HtH
Johan

Similar Messages

  • New Oracle DBA - Need help with backup & restore procedure via RMAN

    Hello everyone,
    I've been a SQL Server DBA for 12 years now, but new to the Oracle space. My first assignment at work was to refresh our training environment with production. So with that said, I took a full backup of our production database via RMAN and backed up the Control File. I then copied both the Control File and full backup from our production environment to training. I followed the procedures listed in the URL below:
    http://www.dba-oracle.com/t_rman_clone+copy_database.htm
    I then connected to RMAN and executed a 'show all' which is as follows:
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. Are these settings valid only when the database is mounted? How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    Thank you,
    Pete

    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. These settings are persistent settings.So these information retain in control files.To reading information from control files database instance must be MOUNT or OPEN stage.Due to you have mount instance and try SHOW ALL command through RMAN.
    Are these settings valid only when the database is mounted? Not only MOUNT also OPEN stage.
    How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    There are several ways like duplication.But you take full backup from production database using BACKUP DATABASE through rman.In this case you will get also AUTOBACKUP for controlfiles/spfiles.Then copy these backup files and all available archive logs to training server and perform below steps.
    1) You have set properly ORACLE_HOME and ORACLE_SID environment variable.After that first need restore spfile as
    rman target /
    startup force nomount;
    restore spfile from 'autobackup_location';
    startup force nomount;2) Now you have to restore controlfiie as
      rman>restore controlfile from  'autobackup_location';
    rman>alter database mount;
      3) Now need catalog(it means register) all backup files and archivelogs in new restored controlfile as
       rman>catalog start with 'backuplocation';
       4) Finally you can restore and recover your database as below
       rman>restore database;
    rman>recover database;
    rman>alter database open resetlogs;
       If you want restore database to new location then before executing RESTORE DATABASE command you can use SET NEWNAME FOR DATAFILE clause.Firstly refer backup recovery guide in online documentation.

  • Duplicating a db to another host via rman

    I found a few documents on this topic, but didn't resolve my issue.
    I am trying to restore an RMAN backup to a different host
    (with same instance name, different path) from where the backup was taken.
    And while running it gives the following error:
    ORA-19505: failed to identify file "D:\ORACLE\BACKUP\TRACKER_20050920_FULL.S148P1"
    ORA-27041: unable to open file
    ORA-04002 unable to open file
    O/S-Error : (OS 21) device not ready
    Here D: drive is where I backup via rman ervery day.
    If any of you had come across this problem and had a solution to this, could you please share it with me.
    Thanks
    P.S. I'm able to connect to catalog, target and auxiliary.
    Charlie

    run on host B:
    step 1. create auxiliary instance and connect to auxiliary instance in nomount mode
            SQL> connect sys/syspw@aux as sysdba
            Connected to an idle instance.
            SQL>startup nomount pfile='C:\oracle\admin\tracker\scripts\initauxdb.ora'
    run on host A:
    step 2. RMAN> connect catalog rman/rmanpw@rman
            RMAN> connect target sys/syspw@target
            RMAN> connect auxiliary sys/syspw@aux
    step 3. RMAN> run
            RMAN> {
            RMAN>    ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
            RMAN>    DUPLICATE TARGET DATABASE TO "auxdb"
            RMAN>    PFILE='D:\oracle\admin\tracker\scripts\initauxdb.ora';
            RMAN> }
            ORA-19505: failed to identify file "D:\ORACLE\BACKUP\TRACKER_20050920_FULL.S148P1"
            ORA-27041: unable to open file
            ORA-04002: unable to open file
            O/S-Error: (OS 21) device not readyAfter made whole backup of primary db to drive C on host A,
    and redo step 2 and step 3.
    The error messages as the same as step 3.
    There's my backup script:
    RMAN>run
    RMAN>{
    RMAN>  shutdown immediate;
    RMAN>  startup mount;
    RMAN>  ALLOCATE CHANNEL bck2disk1 DEVICE TYPE DISK;
    RMAN>  BACKUP DATABASE FORMAT 'C:\oracle\backup\%d_%T_Full.S%sP%p';
    RMAN>  sql "alter database open";
    RMAN>  Release Channel bck2disk1;
    RMAN>}Thanks a lot
    Charlie

  • FLASHBACK Database : rman vs sql command differnces

    I am new to Oracle and want understand the difference and which is the correct way of flashing back the database?
    RMAN command vs SQL Command on using FLASHBACK DATABASE
    SQL> FLASHBACK DATABASE TO RESTORE POINT BEFORE_ONLINE_TEST;  {CODE} Vs rman> run{
         flashback database to restore point BEFORE_TEST_320130313;
         sql "alter database open resetlogs"; }
    Referring this article on http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmflash.htm#BGBDCAFA it says we can use both RMAN and SQL command for database flashback.
    Questions:
    1. Difference between using RMAN and SQL command on database flashback?
    2. When to use RMAN or SQL on the  database flashback?
    3. Which is the Oracle recommended or best way ?
    Edited by: Sivaprasad S on Mar 15, 2013 7:26 PM
    Edited by: Sivaprasad S on Mar 15, 2013 7:26 PM
    Edited by: Sivaprasad S on Mar 15, 2013 7:27 PM
    Edited by: Sivaprasad S on Mar 15, 2013 7:27 PM
    Edited by: Sivaprasad S on Mar 15, 2013 7:28 PM
    Edited by: Sivaprasad S on Mar 15, 2013 7:29 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    When I issue the SQL Plus command of
    SQL> flashback database to restore point BEFORE_TEST_20130313 ;
    flashback database to restore point BEFORE_TEST_20130313
    ERROR at line 1:
    ORA-38754: FLASHBACK DATABASE not started; required redo log is not available
    ORA-38762: redo logs needed for SCN 87612483975 to SCN 87612485856
    ORA-38761: redo log sequence 1 in thread 1, incarnation 3 could not be accessedHowever on running this on RMAN
    RMAN>
    list backup of archivelog scn between 87612483975 and 87612485856
    RMAN> ;
    starting full resync of recovery catalog
    full resync complete
    List of Backup Sets
    ===================
    BS Key  Size       Device Type Elapsed Time Completion Time
    5212758 19.75M     SBT_TAPE    00:00:04     13-MAR-2013 16:36:17
            BP Key: 5212765   Status: AVAILABLE  Compressed: NO  Tag: TAG20130313T163611
            Handle: <TestDB_60:809973373:1>.al   Media: 945c30b6:506c6cd2:3a14:0001
      List of Archived Logs in backup set 5212758
      Thrd Seq     Low SCN    Low Time             Next SCN   Next Time
      1    1       87612468290 13-MAR-2013 13:28:19 87612484321 13-MAR-2013 16:36:06
      1    2       87612484321 13-MAR-2013 16:36:06 87612484339 13-MAR-2013 16:36:09
    BS Key  Size       Device Type Elapsed Time Completion Time
    5212759 896.50M    SBT_TAPE    00:00:17     13-MAR-2013 16:36:30
            BP Key: 5212766   Status: AVAILABLE  Compressed: NO  Tag: TAG20130313T163611
            Handle: <TestDB_59:809973373:1>.al   Media: 945c30b6:506c6cbd:39f5:0001
      List of Archived Logs in backup set 5212759
      Thrd Seq     Low SCN    Low Time             Next SCN   Next Time
      1    5       87612363812 12-MAR-2013 14:22:26 87612659040 13-MAR-2013 03:04:08
    run {
    allocate CHANNEL dev_2  TYPE 'SBT_TAPE' format '%U' PARMS  'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8)';
    allocate CHANNEL dev_3  TYPE 'SBT_TAPE' format '%U' PARMS  'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8)';
    allocate CHANNEL dev_4  TYPE 'SBT_TAPE' format '%U' PARMS  'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8)';
    flashback database to restore point BEFORE_TEST_20130313;
    sql "alter database open resetlogs";
    release channel dev_2;
    release channel dev_3;
    release channel dev_4;
    starting media recovery
    archived log for thread 1 with sequence 2 is already on disk as file +DG_PERF_FLASH_02/TestDB/archivelog/2013_03_14/thread_1_seq_2.3612.810054205
    archived log for thread 1 with sequence 3 is already on disk as file +DG_PERF_FLASH_02/TestDB/archivelog/2013_03_14/thread_1_seq_3.1588.810054205
    channel dev_2: starting archived log restore to default destination
    channel dev_2: restoring archived log
    archived log thread=1 sequence=1
    channel dev_2: reading from backup piece <TestDB_60:809973373:1>.al
    channel dev_2: piece handle=<TestDB_60:809973373:1>.al tag=TAG20130313T163611
    channel dev_2: restored backup piece 1
    channel dev_2: restore complete, elapsed time: 00:00:46
    channel dev_2: deleting archived log(s)
    archived log file name=+DG_PERF_FLASH_02/TestDB/archivelog/2013_03_15/thread_1_seq_1.2969.810106317 RECID=49 STAMP=810106318
    media recovery complete, elapsed time: 00:00:05
    Finished flashback at 10-MAR-2013 05:32:07
    database reset to incarnation 5215723
    When we issue the SQL Plus command, if there is  need of old database backup of archive log, how does that SQL Plus communicate with rman recovery catalog and retrieve?

  • Not able to start Gnome via GDM

    I have just installed Archlinux on an old laptop (HP ZV5000), which I want to bring back to life as there is always a long queue to us the other PC in the family
    Everything went smooth, except the last step: when I try to login via GDM, the screen becomes gry (as if it is entering the Gnome environment, but then it is stuck there.
    Strange thing is that If I disable GDM and run Gnome with startx from the command line, then everything is working fine
    Currently I am anyway using the laptop that way, but I still feel uncomfortable as this is not the way it should work
    I have tried to ssh to the machine while stuck into the grey screen and this is what I've got while checking the status of the GDM service:
    # systemctl status gdm.service
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; disabled)
    Active: active (running) since mer 2013-09-04 20:32:02 CEST; 6min ago
    Main PID: 348 (gdm)
    CGroup: name=systemd:/system/gdm.service
    ├─348 /usr/bin/gdm
    ├─353 /usr/lib/gdm/gdm-simple-slave --display-id /org/gnome/DisplayManager/Displays/_0
    ├─357 /usr/bin/Xorg :0 -background none -verbose -auth /var/run/gdm/auth-for-gdm-iWnxiD/database -seat seat0 -nolisten tcp vt1
    ├─376 gdm-session-worker [pam/gdm-launch-environment]
    └─504 gdm-session-worker [pam/gdm-password]
    set 04 20:32:02 ZV5000 systemd[1]: Starting GNOME Display Manager...
    set 04 20:32:02 ZV5000 systemd[1]: Started GNOME Display Manager.
    set 04 20:32:05 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    set 04 20:32:52 ZV5000 gdm-password][504]: pam_unix(gdm-password:session): session opened for user guidobelix by (unknown)(uid=0)
    After 10-15 minutes I was back to GDM login screen and the servise status changed in this way:
    # systemctl status gdm.service
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; disabled)
    Active: active (running) since mer 2013-09-04 20:32:02 CEST; 19min ago
    Main PID: 348 (gdm)
    CGroup: name=systemd:/system/gdm.service
    ├─ 348 /usr/bin/gdm
    ├─ 376 gdm-session-worker [pam/gdm-launch-environment]
    ├─2095 /usr/lib/gdm/gdm-simple-slave --display-id /org/gnome/DisplayManager/Displays/_0
    ├─2099 /usr/bin/Xorg :0 -background none -verbose -auth /var/run/gdm/auth-for-gdm-OXL0yo/database -seat seat0 -nolisten tcp vt1
    └─2107 gdm-session-worker [pam/gdm-launch-environment]
    set 04 20:32:02 ZV5000 systemd[1]: Starting GNOME Display Manager...
    set 04 20:32:02 ZV5000 systemd[1]: Started GNOME Display Manager.
    set 04 20:32:05 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    set 04 20:32:52 ZV5000 gdm-password][504]: pam_unix(gdm-password:session): session opened for user guidobelix by (unknown)(uid=0)
    set 04 20:49:46 ZV5000 gdm[348]: **
    set 04 20:49:46 ZV5000 gdm[348]: ERROR:gdm-slave.c:1094:_get_uid_and_gid_for_user: assertion failed: (username != NULL)
    set 04 20:49:46 ZV5000 systemd-coredump[2093]: Process 353 (gdm-simple-slav) dumped core.
    set 04 20:49:52 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    Does anybody have a clue on what the problem could be?
    Thanks a lot
    Guido
    Last edited by Guidobelix (2013-09-05 10:35:06)

    Sorry for the late reply.
    Yes, I did, but there are no differences between the Xorg.0.log that is created when I (unsuccessfully) start Gnome via GDM or when I start it with startx. There is an error in both cases, but Gnome fails only in one of those two.
    This is what I get
    [ 370.636]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 370.637] X Protocol Version 11, Revision 0
    [ 370.637] Build Operating System: Linux 3.9.7-1-ARCH i686
    [ 370.637] Current Operating System: Linux ZV5000 3.10.10-1-ARCH #1 SMP PREEMPT Fri Aug 30 12:11:59 CEST 2013 i686
    [ 370.637] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5e73dfe5-d72e-4392-b0cc-f2f940ad97e9 rw quiet
    [ 370.638] Build Date: 01 July 2013 10:52:25AM
    [ 370.638]
    [ 370.638] Current version of pixman: 0.30.2
    [ 370.639] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 370.639] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 370.640] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 10 19:56:33 2013
    [ 370.682] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 370.682] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 370.699] (==) No Layout section. Using the first Screen section.
    [ 370.699] (==) No screen section available. Using defaults.
    [ 370.699] (**) |-->Screen "Default Screen Section" (0)
    [ 370.699] (**) | |-->Monitor "<default monitor>"
    [ 370.712] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 370.712] (==) Automatically adding devices
    [ 370.712] (==) Automatically enabling devices
    [ 370.712] (==) Automatically adding GPU devices
    [ 370.734] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 370.734] Entry deleted from font path.
    [ 370.740] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 370.740] Entry deleted from font path.
    [ 370.740] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 370.740] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 370.740] Entry deleted from font path.
    [ 370.740] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 370.740] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 370.740] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 370.740] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 370.741] (II) Loader magic: 0x8258620
    [ 370.741] (II) Module ABI versions:
    [ 370.741] X.Org ANSI C Emulation: 0.4
    [ 370.741] X.Org Video Driver: 14.1
    [ 370.741] X.Org XInput driver : 19.1
    [ 370.741] X.Org Server Extension : 7.0
    [ 370.741] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 370.744] (--) PCI:*(0:1:5:0) 1002:5835:103c:006b rev 0, Mem @ 0xe0000000/268435456, 0xd0100000/65536, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
    [ 370.744] Initializing built-in extension Generic Event Extension
    [ 370.745] Initializing built-in extension SHAPE
    [ 370.745] Initializing built-in extension MIT-SHM
    [ 370.745] Initializing built-in extension XInputExtension
    [ 370.745] Initializing built-in extension XTEST
    [ 370.745] Initializing built-in extension BIG-REQUESTS
    [ 370.746] Initializing built-in extension SYNC
    [ 370.746] Initializing built-in extension XKEYBOARD
    [ 370.746] Initializing built-in extension XC-MISC
    [ 370.746] Initializing built-in extension SECURITY
    [ 370.746] Initializing built-in extension XINERAMA
    [ 370.746] Initializing built-in extension XFIXES
    [ 370.747] Initializing built-in extension RENDER
    [ 370.747] Initializing built-in extension RANDR
    [ 370.747] Initializing built-in extension COMPOSITE
    [ 370.747] Initializing built-in extension DAMAGE
    [ 370.747] Initializing built-in extension MIT-SCREEN-SAVER
    [ 370.747] Initializing built-in extension DOUBLE-BUFFER
    [ 370.748] Initializing built-in extension RECORD
    [ 370.748] Initializing built-in extension DPMS
    [ 370.748] Initializing built-in extension X-Resource
    [ 370.748] Initializing built-in extension XVideo
    [ 370.753] Initializing built-in extension XVideo-MotionCompensation
    [ 370.759] Initializing built-in extension XFree86-VidModeExtension
    [ 370.764] Initializing built-in extension XFree86-DGA
    [ 370.769] Initializing built-in extension XFree86-DRI
    [ 370.774] Initializing built-in extension DRI2
    [ 370.774] (II) "glx" will be loaded by default.
    [ 370.774] (II) LoadModule: "dri2"
    [ 370.774] (II) Module "dri2" already built-in
    [ 370.774] (II) LoadModule: "glamoregl"
    [ 370.793] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 370.923] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 370.923] compiled for 1.14.2, module version = 0.5.1
    [ 370.923] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 370.923] (II) LoadModule: "glx"
    [ 370.924] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 370.950] (II) Module glx: vendor="X.Org Foundation"
    [ 370.950] compiled for 1.14.2, module version = 1.0.0
    [ 370.950] ABI class: X.Org Server Extension, version 7.0
    [ 370.950] (==) AIGLX enabled
    [ 370.956] Loading extension GLX
    [ 370.956] (==) Matched ati as autoconfigured driver 0
    [ 370.956] (==) Matched ati as autoconfigured driver 1
    [ 370.956] (==) Matched vesa as autoconfigured driver 2
    [ 370.956] (==) Matched modesetting as autoconfigured driver 3
    [ 370.956] (==) Matched fbdev as autoconfigured driver 4
    [ 370.956] (==) Assigned the driver to the xf86ConfigLayout
    [ 370.956] (II) LoadModule: "ati"
    [ 370.957] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 370.971] (II) Module ati: vendor="X.Org Foundation"
    [ 370.971] compiled for 1.14.2, module version = 7.2.0
    [ 370.971] Module class: X.Org Video Driver
    [ 370.971] ABI class: X.Org Video Driver, version 14.1
    [ 370.971] (II) LoadModule: "radeon"
    [ 370.971] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 371.010] (II) Module radeon: vendor="X.Org Foundation"
    [ 371.010] compiled for 1.14.2, module version = 7.2.0
    [ 371.010] Module class: X.Org Video Driver
    [ 371.010] ABI class: X.Org Video Driver, version 14.1
    [ 371.010] (II) LoadModule: "vesa"
    [ 371.010] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 371.022] (II) Module vesa: vendor="X.Org Foundation"
    [ 371.023] compiled for 1.14.0, module version = 2.3.2
    [ 371.023] Module class: X.Org Video Driver
    [ 371.023] ABI class: X.Org Video Driver, version 14.1
    [ 371.023] (II) LoadModule: "modesetting"
    [ 371.023] (WW) Warning, couldn't open module modesetting
    [ 371.023] (II) UnloadModule: "modesetting"
    [ 371.023] (II) Unloading modesetting
    [ 371.023] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 371.023] (II) LoadModule: "fbdev"
    [ 371.023] (WW) Warning, couldn't open module fbdev
    [ 371.023] (II) UnloadModule: "fbdev"
    [ 371.024] (II) Unloading fbdev
    [ 371.024] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 371.024] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI
    [ 371.035] (II) VESA: driver for VESA chipsets: vesa
    [ 371.035] (++) using VT number 1
    [ 371.049] (II) [KMS] Kernel modesetting enabled.
    [ 371.049] (WW) Falling back to old probe method for vesa
    [ 371.049] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 371.049] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 371.049] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 371.049] (==) RADEON(0): Default visual is TrueColor
    [ 371.049] (==) RADEON(0): RGB weight 888
    [ 371.049] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 371.049] (--) RADEON(0): Chipset: "ATI Radeon Mobility 9100 IGP (U3) 5835" (ChipID = 0x5835)
    [ 371.049] (II) Loading sub module "dri2"
    [ 371.049] (II) LoadModule: "dri2"
    [ 371.049] (II) Module "dri2" already built-in
    [ 371.049] (II) Loading sub module "exa"
    [ 371.049] (II) LoadModule: "exa"
    [ 371.050] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 371.058] (II) Module exa: vendor="X.Org Foundation"
    [ 371.058] compiled for 1.14.2, module version = 2.6.0
    [ 371.058] ABI class: X.Org Video Driver, version 14.1
    [ 371.058] (II) RADEON(0): KMS Color Tiling: disabled
    [ 371.058] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 371.058] (II) RADEON(0): KMS Pageflipping: enabled
    [ 371.058] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 371.081] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 371.081] (II) RADEON(0): Output LVDS has no monitor section
    [ 371.087] (II) RADEON(0): Output S-video has no monitor section
    [ 371.109] (II) RADEON(0): EDID for output VGA-0
    [ 371.109] (II) RADEON(0): EDID for output LVDS
    [ 371.109] (II) RADEON(0): Printing probed modes for output LVDS
    [ 371.109] (II) RADEON(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 802 808 823 (49.3 kHz eP)
    [ 371.109] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 371.109] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 371.109] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 371.109] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 371.115] (II) RADEON(0): EDID for output S-video
    [ 371.115] (II) RADEON(0): Output VGA-0 disconnected
    [ 371.115] (II) RADEON(0): Output LVDS connected
    [ 371.115] (II) RADEON(0): Output S-video disconnected
    [ 371.115] (II) RADEON(0): Using exact sizes for initial modes
    [ 371.115] (II) RADEON(0): Output LVDS using initial mode 1280x800
    [ 371.116] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 371.116] (II) RADEON(0): mem size init: gart size :1dff000 vram size: s:8000000 visible:7bd8000
    [ 371.116] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 371.116] (==) RADEON(0): DPI set to (96, 96)
    [ 371.116] (II) Loading sub module "fb"
    [ 371.116] (II) LoadModule: "fb"
    [ 371.116] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 371.129] (II) Module fb: vendor="X.Org Foundation"
    [ 371.129] compiled for 1.14.2, module version = 1.0.0
    [ 371.129] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 371.129] (II) Loading sub module "ramdac"
    [ 371.129] (II) LoadModule: "ramdac"
    [ 371.129] (II) Module "ramdac" already built-in
    [ 371.129] (II) UnloadModule: "vesa"
    [ 371.129] (II) Unloading vesa
    [ 371.130] (--) Depth 24 pixmap format is 32 bpp
    [ 371.131] (II) RADEON(0): [DRI2] Setup complete
    [ 371.131] (II) RADEON(0): [DRI2] DRI driver: r200
    [ 371.131] (II) RADEON(0): [DRI2] VDPAU driver: r200
    [ 371.131] (II) RADEON(0): Front buffer size: 4000K
    [ 371.131] (II) RADEON(0): VRAM usage limit set to 110505K
    [ 371.133] (==) RADEON(0): Backing store disabled
    [ 371.133] (II) RADEON(0): Direct rendering enabled
    [ 371.133] (II) RADEON(0): Render acceleration enabled for R200 type cards.
    [ 371.133] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 371.133] (II) EXA(0): Driver registered support for the following operations:
    [ 371.134] (II) Solid
    [ 371.134] (II) Copy
    [ 371.134] (II) Composite (RENDER acceleration)
    [ 371.134] (II) UploadToScreen
    [ 371.134] (II) DownloadFromScreen
    [ 371.134] (II) RADEON(0): Acceleration enabled
    [ 371.134] (==) RADEON(0): DPMS enabled
    [ 371.134] (==) RADEON(0): Silken mouse enabled
    [ 371.134] (II) RADEON(0): Set up textured video
    [ 371.134] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 371.134] (II) RADEON(0): [XvMC] Extension initialized.
    [ 371.134] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 371.135] (--) RandR disabled
    [ 371.294] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 371.294] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 371.294] (II) AIGLX: enabled GLX_ARB_create_context
    [ 371.294] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 371.294] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 371.294] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 371.294] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 371.295] (II) AIGLX: Loaded and initialized r200
    [ 371.295] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 371.296] (II) RADEON(0): Setting screen physical size to 338 x 211
    [ 371.642] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 371.642] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 371.642] (II) LoadModule: "evdev"
    [ 371.642] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 371.670] (II) Module evdev: vendor="X.Org Foundation"
    [ 371.670] compiled for 1.14.2, module version = 2.8.1
    [ 371.670] Module class: X.Org XInput Driver
    [ 371.670] ABI class: X.Org XInput driver, version 19.1
    [ 371.670] (II) Using input driver 'evdev' for 'Power Button'
    [ 371.670] (**) Power Button: always reports core events
    [ 371.670] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 371.670] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 371.670] (--) evdev: Power Button: Found keys
    [ 371.670] (II) evdev: Power Button: Configuring as keyboard
    [ 371.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 371.670] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 371.670] (**) Option "xkb_rules" "evdev"
    [ 371.670] (**) Option "xkb_model" "pc104"
    [ 371.670] (**) Option "xkb_layout" "us"
    [ 371.707] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 371.708] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 371.708] (II) Using input driver 'evdev' for 'Video Bus'
    [ 371.708] (**) Video Bus: always reports core events
    [ 371.708] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 371.708] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 371.708] (--) evdev: Video Bus: Found keys
    [ 371.708] (II) evdev: Video Bus: Configuring as keyboard
    [ 371.708] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/LNXVIDEO:00/input/input4/event4"
    [ 371.708] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 371.708] (**) Option "xkb_rules" "evdev"
    [ 371.708] (**) Option "xkb_model" "pc104"
    [ 371.708] (**) Option "xkb_layout" "us"
    [ 371.709] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 371.709] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 371.709] (II) Using input driver 'evdev' for 'Power Button'
    [ 371.709] (**) Power Button: always reports core events
    [ 371.709] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 371.709] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 371.709] (--) evdev: Power Button: Found keys
    [ 371.709] (II) evdev: Power Button: Configuring as keyboard
    [ 371.709] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 371.709] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 371.709] (**) Option "xkb_rules" "evdev"
    [ 371.709] (**) Option "xkb_model" "pc104"
    [ 371.709] (**) Option "xkb_layout" "us"
    [ 371.710] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 371.710] (II) No input driver specified, ignoring this device.
    [ 371.710] (II) This device may have been added with another device file.
    [ 371.710] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 371.711] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 371.711] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 371.711] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 371.711] (**) AT Translated Set 2 keyboard: always reports core events
    [ 371.711] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 371.711] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 371.711] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 371.711] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 371.711] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 371.711] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 371.711] (**) Option "xkb_rules" "evdev"
    [ 371.711] (**) Option "xkb_model" "pc104"
    [ 371.711] (**) Option "xkb_layout" "us"
    [ 371.712] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event6)
    [ 371.712] (**) PS/2 Mouse: Applying InputClass "evdev pointer catchall"
    [ 371.712] (II) Using input driver 'evdev' for 'PS/2 Mouse'
    [ 371.712] (**) PS/2 Mouse: always reports core events
    [ 371.712] (**) evdev: PS/2 Mouse: Device: "/dev/input/event6"
    [ 371.712] (--) evdev: PS/2 Mouse: Vendor 0x2 Product 0x8
    [ 371.712] (--) evdev: PS/2 Mouse: Found 3 mouse buttons
    [ 371.712] (--) evdev: PS/2 Mouse: Found relative axes
    [ 371.712] (--) evdev: PS/2 Mouse: Found x and y relative axes
    [ 371.712] (II) evdev: PS/2 Mouse: Configuring as mouse
    [ 371.712] (**) evdev: PS/2 Mouse: YAxisMapping: buttons 4 and 5
    [ 371.712] (**) evdev: PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 371.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input6/event6"
    [ 371.712] (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE, id 10)
    [ 371.713] (II) evdev: PS/2 Mouse: initialized for relative axes.
    [ 371.713] (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration profile 0
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration factor: 2.000
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration threshold: 4
    [ 371.713] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse0)
    [ 371.714] (II) No input driver specified, ignoring this device.
    [ 371.714] (II) This device may have been added with another device file.
    [ 371.714] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event7)
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
    [ 371.714] (II) LoadModule: "synaptics"
    [ 371.714] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 371.721] (II) Module synaptics: vendor="X.Org Foundation"
    [ 371.722] compiled for 1.14.1, module version = 1.7.1
    [ 371.722] Module class: X.Org XInput Driver
    [ 371.722] ABI class: X.Org XInput driver, version 19.1
    [ 371.722] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 371.722] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 371.722] (**) Option "Device" "/dev/input/event7"
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023 (res 0)
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767 (res 0)
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 371.820] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 15
    [ 371.820] (**) Option "TapButton1" "1"
    [ 371.820] (**) Option "TapButton2" "2"
    [ 371.820] (**) Option "TapButton3" "3"
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 371.820] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 371.873] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input7/event7"
    [ 371.873] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 11)
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MaxSpeed is now 1.75
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) AccelFactor is now 0.156
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 371.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 371.874] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 371.874] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 371.874] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 371.874] (II) No input driver specified, ignoring this device.
    [ 371.875] (II) This device may have been added with another device file.
    [ 778.808] (II) UnloadModule: "synaptics"
    [ 778.809] (II) evdev: PS/2 Mouse: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Power Button: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Video Bus: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Power Button: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.836] (EE) Server terminated successfully (0). Closing log file.
    Any other idea?

  • Macbook freezes when I start phoning via Skype

    Macbook freezes when I start phoning via Skype but it’s continuing ringing. Here’s the log file for this time
    23.11.13 17:26:54,943 xpcproxy[16877]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    23.11.13 17:26:55,084 com.apple.launchd[1]: (com.apple.WebKit.Networking.F6B93F72-8D4D-4EA3-A78F-71544BB270CC[16776]) Could not terminate job: 3: No such process
    23.11.13 17:26:55,084 com.apple.launchd[1]: (com.apple.WebKit.Networking.F6B93F72-8D4D-4EA3-A78F-71544BB270CC[16776]) Using fallback option to terminate job...
    23.11.13 17:26:55,087 com.apple.launchd[1]: (com.apple.WebKit.Networking.F6B93F72-8D4D-4EA3-A78F-71544BB270CC[16776]) Exited with code: 1
    23.11.13 17:26:55,293 com.apple.iCloudHelper[16877]: *** WARNING: CFMachPortSetInvalidationCallBack() called on a CFMachPort with a Mach port (0x7c17) which does not have any send rights.  This is not going to work.  Callback function: 0x7fff89eca981
    23.11.13 17:26:55,305 secd[207]:  securityd_xpc_dictionary_handler AuthBrokerAgent[16878] copy_matching The operation couldn’t be completed. (OSStatus error -34018 - client has neither application-identifier nor keychain-access-groups entitlements)
    23.11.13 17:26:55,309 AuthBrokerAgent[16878]:  SecOSStatusWith error:[-34018] Не удалось завершить операцию. (OSStatus, ошибка -34018 - Remote error : The operation couldnвАЩt be completed. (OSStatus error -34018 - client has neither application-identifier nor keychain-access-groups entitlements))
    23.11.13 17:26:56,515 syncdefaultsd[16876]: *** WARNING: CFMachPortSetInvalidationCallBack() called on a CFMachPort with a Mach port (0x6417) which does not have any send rights.  This is not going to work.  Callback function: 0x7fff89eca981
    23.11.13 17:26:56,518 secd[207]:  securityd_xpc_dictionary_handler AuthBrokerAgent[16878] copy_matching The operation couldn’t be completed. (OSStatus error -34018 - client has neither application-identifier nor keychain-access-groups entitlements)
    23.11.13 17:26:56,519 AuthBrokerAgent[16878]:  SecOSStatusWith error:[-34018] Не удалось завершить операцию. (OSStatus, ошибка -34018 - Remote error : The operation couldnвАЩt be completed. (OSStatus error -34018 - client has neither application-identifier nor keychain-access-groups entitlements))
    23.11.13 17:27:40,000 bootlog[0]: BOOT_TIME 1385202460 0

    Maybe you need a new VGA adapter? Can you bring your MacBook and adapter in to an Apple store and have them test your adapter and a known working adapter?
    -Doug

  • Can't get MAC to shut down and start up via the schedule button in system preferences energy saver. Is there another way?

    Can't get MAC to shut down and start up via the schedule button in system preferences energy saver. Is there another way?

    Try this to start:
    Repair the Hard Drive and Permissions
    Boot from your Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • How can I enable java applet plug-in and Web Start applications via terminal?

    Since the last Java update to Snow Leopard, I have found that the system periodically disables the Java applet plug-in after a period of disuse.  I know I can go to /Applications/Utilities/Java Preferences and just click to re-enable Java.  But I want to write a script which will do this periodically for a couple hundred Mac users where I work. 
    My question is - how can I reenable the Java applet plug-in and web start applications via Terminal command?  Is this possible?  Is there a plist file that can be modified, etc.?
    Bob Reed

    It is my understanding that Apple's most recent Java update automatically disables Java after a certain period of time that it hasn't been used.  We don't want users to have to keep re-enabling it.  So we wanted to find a way to do this via script either run by a Casper JSS server or stored locally on each workstation.   With the guidance provided by Mark Jalbert above and some text from a script written by Rich Trouton, I was able to make a script (with some minor changes) and a launch agent to re-run the script upon login.  So the preference is always enabled.
    For your reference, the script content is:
    #!/bin/sh
    # DYNAMICALLY SET THE UUID FOR THE BYHOST FILE NAMING
    if [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` == "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c51-62 | awk {'print tolower()'}`
    elif [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` != "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-62`
    fi
    # Set the the "Enable applet plug-in and Web Start Applications" setting in the Java Preferences for the current user.
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsEnabled" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsEnabled bool true" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsLastUsed" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsLastUsed real $(( $(date "+%s") - 978307200 ))" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    The launch agent plist content is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>org.XXXXX.enableJavaPlugin</string>
              <key>ProgramArguments</key>
              <array>
                        <string>sh</string>
                        <string>/Library/Scripts/XXXXX/enableJava_plugin.sh</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartOnMount</key>
              <true/>
    </dict>
    </plist>
    I hope this is helpful to anyone wishing to keep the Java web plugin enabled.
    Bob
    Message was edited by: Robert Reed2

  • Start events via change documents (BUS2009)

    Hi All,
    I'm currently working on ECC 6.0 and need help for starting events via change documents.
    I want to restart a workflow whenever a cost centre in the PR is changed. So I have created an entry in SWEC with Change doc. object as BANF  and triggering event as On Change.
    In the field restriction I have entered EBKN-KOSTL. I want trigger two events SIGNIFICANTLYCHANGED to end previously started workflow and RELEASESTEPCREATED to start the new workflow.
    But whenever these events are triggered the new workflow starts with an error status and the old one remains as it is. The error for new workflow seems like there is no binding between triggered event object and started workflow.
    Please suggest. m i missing something ?
    Thanks,
    Shounak

    It's the same old bug. I think you have already configured the release strategy which triggers all the necessary events, now when you make entries in SWEC, this also triggers the event and the overlapping takes place resulting in the error you are getting. Either you remove the release strategy or the entries in SWEC. Further make sure you have terminating event "Changed" or "SignificantlyChanged" in the approval task based on your requirement.
    For the conditions, you can either control using start conditions or using the release strategy Characteristic FRG_EBAN_KOSTL if you want to stick to release settings.
    Regards, IA
    Edited by: Imthiaz Ahmed on Jul 29, 2008 10:51 AM

  • Start BEX via RRMX doesn't work

    Hello
    BW 3.5 /SAP GU 6.2
    It is possible to access bex via system-> program-> BEx -> analyzer.
    However transaction RRMX doesn't start BEX . There is also no error message. But the EXCEL Process starts ( seen in the Windows Task Manager) and disappears immediately.
    I have also checked authorization, where everything is ok.
    Please has anyone a good idea how to solve or at least some investigation ideas.
    Best regards
    Christian Baumann

    > Hi,
    >
    > First try this->
    > Open business explorer through the start menu.
    >
    > If not, then Restarting the BW server will work.
    >
    > Regards,
    > San!
    Hello
    Thanks a lot of your answer. Perhaps I didnt write all important information on this issue down.
    It is a user, who is not able to start Bex via RRMX. However when I start RRMX it works perfectly and we are on the same platform.
    Do you have another idea?

  • Livecache Start problem via LC10

    Dear All,
    We are facing problems while starting livecache via LC10
    It  is in green state but lcinit.log file contains error.
    Also /sapapo/om03 returns error:
    DB 59 works fine.
    <b>lcinit.log contains:</b>
    START *****************************
    liveCache LCA (restart)
    Thu 07/19/2007
    06:11 PM
    installation path = e:\sapdb\lca\db
    OK
    OK
    DBMServer 7.6.00   Build 029-123-130-265
    starting LCA into ONLINE
    OK
    Creating liveCache application procedures
    ERR
    -<b>24964,ERR_EXECUTE: error in program execution</b>
    3,""e:\sapdb\lca\db\bin\x_python" "e:\sapdb\lca\db\env\lapps.py" -R "e:\sapdb\lca\db" -d LCA -u superdba,*"
    Installing APPS
    Traceback----
      File "e:\sapdb\lca\db\env\installib.py", line 410, in connectAndInstall
        installRoutine (session, options)
      File "e:\sapdb\lca\db\env\lapps.py", line 43, in install
        "APPS"
      File "e:\sapdb\lca\db\env\installib.py", line 172, in include
        install (session, options)
      File "e:\sapdb\lca\db\env\APPS.py", line 40, in install
        'CREATE USER %s PASSWORD %s DBA NOT EXCLUSIVE' %
    Error----
    unexpected Error -2014
    ERROR : liveCache LCA not started
    Thu 07/19/2007
    06:11 PM
    END ******************************
    <b>C:\Documents and Settings\scmadm.BOMW047A.003>sdbregview -l</b>SAP Utilities       e:/sapdb/programs      7.6.00.29     64 bit    valid
    DB Analyzer         e:/sapdb/programs      7.6.00.29     64 bit    valid
    Server Utilities    e:/sapdb/programs      7.6.00.29     64 bit    valid
    APO LC APPS         e:/sapdb/lca/db/sap    5.00.007      64 bit    valid
    Base                e:/sapdb/programs      7.6.00.29     64 bit    valid
    Redist Python       e:/sapdb/programs      7.6.00.29     64 bit    valid
    JDBC                e:/sapdb/programs      7.6.00.24               valid
    Messages            e:/sapdb/programs      MSG 0.3347              valid
    ODBC                e:/sapdb/programs      7.6.00.29     64 bit    valid
    Database Kernel     e:/sapdb/lca/db        7.6.00.29     64 bit    valid
    Loader              e:/sapdb/programs      7.6.00.29     64 bit    valid
    SQLDBC              e:/sapdb/programs      7.6.00.29     64 bit    valid
    SQLDBC 7600         e:/sapdb/programs      7.6.00.29     64 bit    valid
    <b>dbmcli on LCA>db_enum</b>
    LCA     e:\sapdb\lca\db                         7.6.00.29       slow    offline
    LCA     e:\sapdb\lca\db                         7.6.00.29       quick   offline
    LCA     e:\sapdb\lca\db                         7.6.00.29       fast    running
    Can somebody help please.
    Regards,
    Prashant

    Hello Prashant,
    the error does not occur during loading the system tables, but during loading the liveCache applications (lcapps).
    The error message you quoted is just the general information, that an error occured, the detailed error message can be seen in the text below that lin:
    'CREATE USER %s PASSWORD %s DBA NOT EXCLUSIVE' %
    Error----
    unexpected Error -2014
    ERROR : liveCache LCA not started
    The SAP-User should be created in the database (which is either SAPR3 or SAP<SID>). I assume that you specified a password for this user which is not allowed. Please check the entries for this user in the integration data and double-check that you entered the same information with the user_sap command. For further information see
    https://wiki.sdn.sap.com/wiki/x/UC8
    If you still cannot solve this issue, please open a customer message that the support can logon to your system to check what's going wrong.
    Regards,
    Melanie

  • Assigment transactions data via C# or SQL

    Hello.
    I need to select assigment transactions data (daily actual work per task for each resource in organization) via C# or SQL . This data are needed to build some tracking report. 
    How can I do this?
    As I understand, CSOM and PSI are unsuitable due to thier impersonation.
    I tried to use OData, but I could't find necessary implementation.
    I'll be very grateful to any help!

    Duplicate thread -
    please see How to restrict user to access only correct org data via TOAD/SQL Developer

  • Start fme via rdesktop

    Hi all,
    has anyone been successful in starting FME via the remote
    desktop connection? I guess it's something to do with activeX,
    maybe it works with vnc. anyone tried that out? we definitely need
    command line options...
    jan

    No luck, yet. Easy enough to open the program on startup, but
    controlling anything inside the program with commands does not seem
    to be possible right now.
    I think this is probably the most requested feature upgrade
    in these forums. Hopefully it will be included in a future release.
    Can anyone from Adobe confirm if it's being considered?
    Please?

  • Migrate entire database to ASM on another server via RMAN minimal downtime

    Hi
    I was looking for a procedure to migrate non ASM production databases to ASM via RMAN on a separate server with minimal downtime (backup as copy/switch database to copy technique). We have TDPO for tape backup and I normally rman clone test databases between servers but this involves too much downtime for production. The procedure in the ASM Admin Guide (Chapter 8) assumes the databases are on the same server.
    Thanks
    Tom Cullen

    tcullen wrote:
    Hi
    I was looking for a procedure to migrate non ASM production databases to ASM via RMAN on a separate server with minimal downtime (backup as copy/switch database to copy technique). We have TDPO for tape backup and I normally rman clone test databases between servers but this involves too much downtime for production. The procedure in the ASM Admin Guide (Chapter 8) assumes the databases are on the same server.
    Thanks
    Tom CullenDear Tom. Why you think you'll have downtime in the production database? The database will be running while the clone will be processing. Check the following link:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#BGBDCDGJ
    RMAN DUPLICATE DATABASE From ASM to ASM: Example
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Suddenly not able to start up the appserver? SQL library error

    Our datacenter went down this past weekend and so my Template 9.1 environments also went down, unfortuantely I have yet to have time to put in start up scripts on those servers. I am trying to bring all 3 tiers up manually and am encountering errors I've never had before. I am assuming that I am doing something wrong because this environment has not been touched and I've never had this problem before.
    Templates have not been changed, we accepted all the defaults. We have 3 different servers, 1 for DB, 1 App, 1 Webserver
    I have started the database and listener and can reach them via sqlplus no problem. However, when starting up my appserver I am getting the following error: GenMessageBox(200, 0, M): PS General SQL Routines: Missing or invalid version of SQL library libpsora
    I have set my Oracle environment (. oraenv) to my database name. And my Oracle home to: /opt/oracle/psft/appbatch/oracle-client/10.2.0.4-64bit. Is this correct? I am starting the appserver as psadm2.
    What am I missing? Why am I suddently having library file version errors?
    Thanks!!

    Ran your sql statement, here is the output:
    SQL> select username,account_status,expiry_date,profile
    2 from dba_users
    3 where username in ('PEOPLE','SYSADM');
    USERNAME ACCOUNT_STATUS EXPIRY_DA
    PROFILE
    PEOPLE OPEN 08-JUL-10
    DEFAULT
    SYSADM OPEN 29-JUL-10
    DEFAULT
    Here is more of the appserver error:
    Do you wish to see the error messages in the APPSRV.LOG file? (y/n) [n] :y
    PSADMIN.1656 (0) [06/02/10 14:24:58](0) Begin boot attempt on domain APPDOM
    PSAPPSRV.1671 (0) [06/02/10 14:25:12](0) PeopleTools Release 8.50.02 (Linux) sta
    rting. Tuxedo server is APPSRV(99)/1
    PSAPPSRV.1671 (0) [06/02/10 14:25:12](0) Cache Directory being used: /home/psadm
    2/ps/pt/8.50/appserv/APPDOM/CACHE/PSAPPSRV_1/
    PSAPPSRV.1671 (0) [06/02/10 14:25:12](1) GenMessageBox(200, 0, M): PS General SQ
    L Routines: Missing or invalid version of SQL library libpsora (200,0)
    PSAPPSRV.1671 (0) [06/02/10 14:25:12](1) GenMessageBox(0, 0, M): Database Signon
    : Could not sign on to database PS91DEMO with user PS.
    PSAPPSRV.1671 (0) [06/02/10 14:25:12](0) Server failed to start
    PSADMIN.1656 (0) [06/02/10 14:25:19](0) End boot attempt on domain APPDOM
    Yes I can connect to sqlplus from the app/batch server with the psadm2 user:
    [psadm2@ovm002 appserv]$ sqlplus SYSADM@psdmo
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jun 2 14:28:57 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    Thanks.

Maybe you are looking for