Left to right parsing

hi all,
I wnat to join two tables t1,t2. t1 contains 100000 records and t2
contains 100 records.
which query performs better?
1. select t1.col1,t1.col2,t2.col1 from t1 inner join t2 on t1.col1=t2.col1
2.1. select t1.col1,t1.col2,t2.col1 from t2 inner join t1 on t2.col1=t1.col1
Pls show me a link to the details
thanks

In the simplest situation Oracle knows about extent number in tables and about
row structure. Using these information it can choose the leading table which is
t2 in your case.
SQL> create table t1 (col1 int, col2 int);
Table created.
SQL> create table t2 (col1 int, col2 int);
Table created.
SQL> insert into t1 select rownum, rownum from dual connect by level <= 100000;
100000 rows created.
SQL> insert into t2 select rownum, rownum from dual connect by level <= 100;
100 rows created.
SQL> commit;
Commit complete.
SQL> explain plan for select t1.col1,t1.col2,t2.col1 from t1 inner join t2 on t1.col1=t2.col1;
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
| Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)|
|   0 | SELECT STATEMENT   |      |   100 |  3900 |    60   (4)|
|*  1 |  HASH JOIN         |      |   100 |  3900 |    60   (4)|
|   2 |   TABLE ACCESS FULL| T2   |   100 |  1300 |     3   (0)|
|   3 |   TABLE ACCESS FULL| T1   | 85524 |  2171K|    56   (2)|
Predicate Information (identified by operation id):
PLAN_TABLE_OUTPUT
   1 - access("T1"."COL1"="T2"."COL1")
18 rows selected.
SQL> explain plan for select t1.col1,t1.col2,t2.col1 from t2 inner join t1 on t2.col1=t1.col1;
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
| Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)|
|   0 | SELECT STATEMENT   |      |   100 |  3900 |    60   (4)|
|*  1 |  HASH JOIN         |      |   100 |  3900 |    60   (4)|
|   2 |   TABLE ACCESS FULL| T2   |   100 |  1300 |     3   (0)|
|   3 |   TABLE ACCESS FULL| T1   | 85524 |  2171K|    56   (2)|
Predicate Information (identified by operation id):
PLAN_TABLE_OUTPUT
   1 - access("T2"."COL1"="T1"."COL1")
18 rows selected.In the real world this depends on the statistic, indexes, etc..
See Performance Tuning Guide
Rgds.

Similar Messages

  • How to migrate stored procs accessing columns "LEFT" and "RIGHT"

    Hello!
    I have to migrate a SYBASE11-Database to Oracle 8.1.7.
    How can I migrate Stored Procs that access tables that contain columns 'LEFT' and 'RIGHT'?
    OMWB reports a parse error "encountered: ,". If ommit the words 'left' or 'right' or if I write 'left()' or 'right()', it works. But I have to use these columns and we cannot change the database model.
    It doesn't work with quoted column names like this: "LEFT" or "RIGHT".
    I use OWMB 1.3.1.0.0. Anybody any ideas? Thanks in advance.
    Yours, Heiko Kaschube

    This is a simple matter to fix.
    As the words LEFT and RIGHT are treated as reserved words by the stored procedure parser, they cannot be used successfully as column names within Oracle PL/SQL.
    In order to get the stored procedure to parse, you can append an underscore to all references to LEFT and RIGHT e.g.
    left_
    then right click on the stored procedure name and select 'parse procedure' from the drop-down menu. The procedure will now parse and the generated PL/SQL can be viewed within the Oracle model menu tab.
    It will now be necessary to remove all the underscores previously appended to the words 'left' and 'right' from the PL/SQL version of the stored procedure in question. Again, this can be done within the Migration Workbench.
    Hope this helps.

  • Left- and right arrow key out of order

    Hi,
    I'm afraid to need your help again. My left and right arrow keys doesn't work as they're supposed to. While can neither navigate through my desktop icons nor the buttons in any dialog nor the text I'm just writing. The cursor stops blinking as soon as I press one of these keys so the system recognizes the key press but the cursor doesn't move. Showkey returns the keycodes 105 left and 106 for the right arrow key.
    While logging in with LXDM im able to navigate back and foth while entering my password as well as the keys work properly in tty. It seems to be only LXDE, where the keys are not working.
    Furthermore my function keys like mute, volume up and down and so on aren't working too. I don't know if both errors are relatet to another.
    Maybe anyone has an idea what I might do to fix this?

    ondoho wrote:
    disjunkt wrote:
    ondoho wrote:are you logging in with lxde-session or with openbox-session (or sth similar)?
    I think I use lxdm to log in. As soon as I'm logged in, I'm using lxde. Ist this what you have to know?
    no, you have to know it.
    i meant: when you login with lxdm, do you have a choice between lxde-session and openbox-session (or sth similar) because there's a difference how openbox gets started and which config files are parsed.
    It's an lxde-session. And LXDE uses openbox-lxde as displaymanager.
    /etc/xdg/lxsession/LXDE/desktop.conf
    1 [Session]
    2 window_manager=openbox-lxde
    3
    4 [GTK]
    5 sNet/ThemeName=Clearlooks
    6 sNet/IconThemeName=nuoveXT2
    7 sGtk/FontName=Sans 10
    8 iGtk/ToolbarStyle=3
    9 iGtk/ButtonImages=1
    10 iGtk/MenuImages=1
    11 iGtk/CursorThemeSize=18
    12 iXft/Antialias=1
    13
    14 [Mouse]
    15 AccFactor=20
    16 AccThreshold=10
    17 LeftHanded=0
    18
    19 [Keyboard]
    20 Delay=500
    21 Interval=30
    ondoho wrote:once you isolate the proper rc.xml, you can check it for typos that might cause this. they are not always reported back as errors.
    The part of the rc.xml I posted beforehand is the only one in that file that is tagged with <keyboard> and there is no binding for the left or right arrow key. There are some in combination with the control or shift key but that shouldn't do anything regarding my problem.
    ondoho wrote:maybe you're running some background software/daemon that grabs the keys? what's in your autostart?
    This are the deamons which are running:
    $ systemctl -all list-units
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    dev-cryptpool-crypthome.device loaded active plugged /dev/cryptpool/crypthome
    dev-cryptpool-cryptroot.device loaded active plugged /dev/cryptpool/cryptroot
    dev-cryptpool-cryptswap.device loaded active plugged /dev/cryptpool/cryptswap
    dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2021042G28Z6A.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2021042G28Z6A\x2dpart1.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2021042G28Z6A\x2dpart2.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2021042G28Z6A\x2dpart4.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-dm\x2dname\x2dcryptpool.device loaded active plugged /dev/disk/by-id/dm-name-cryptpool
    dev-disk-by\x2did-dm\x2dname\x2dcryptpool\x2dcrypthome.device loaded active plugged /dev/disk/by-id/dm-name-cryptpool-crypthome
    dev-disk-by\x2did-dm\x2dname\x2dcryptpool\x2dcryptroot.device loaded active plugged /dev/disk/by-id/dm-name-cryptpool-cryptroot
    dev-disk-by\x2did-dm\x2dname\x2dcryptpool\x2dcryptswap.device loaded active plugged /dev/disk/by-id/dm-name-cryptpool-cryptswap
    dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d15fbcf03325242d5a3d78e1e37664acb\x2dcryptpool.device loaded active plugged /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-15fbcf03325242d5a3d78e1e37664acb-cryptpool
    dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dxsk3Szp4tobNGQBmFevwBgCUJNPDOEcH4Dn4WEgmy0Wd4oalrdTSyU3mwQj6R3mQ.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-xsk3Szp4tobNGQBmFevwBgCUJNPDOEcH4Dn4WEgmy0Wd4oalrdTSyU3mwQj6R3mQ
    dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dxsk3Szp4tobNGQBmFevwBgCUJNPDOEcHllDB1ZzWo40r3U5Lw7ZcpitGvQNRge12.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-xsk3Szp4tobNGQBmFevwBgCUJNPDOEcHllDB1ZzWo40r3U5Lw7ZcpitGvQNRge12
    dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dxsk3Szp4tobNGQBmFevwBgCUJNPDOEcHSWbek23OodbJ7OPpxDhXqstnzg9McBMu.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-xsk3Szp4tobNGQBmFevwBgCUJNPDOEcHSWbek23OodbJ7OPpxDhXqstnzg9McBMu
    dev-disk-by\x2did-wwn\x2d0x5000cca614c10a6e.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-wwn\x2d0x5000cca614c10a6e\x2dpart1.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-wwn\x2d0x5000cca614c10a6e\x2dpart2.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2did-wwn\x2d0x5000cca614c10a6e\x2dpart4.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2dlabel-home.device loaded active plugged /dev/disk/by-label/home
    dev-disk-by\x2dlabel-SAMSUNG_REC.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2duuid-15fbcf03\x2d3252\x2d42d5\x2da3d7\x2d8e1e37664acb.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2duuid-1a803ea9\x2d3133\x2d419d\x2dbdbe\x2dfaa4f14eb5e2.device loaded active plugged /dev/disk/by-uuid/1a803ea9-3133-419d-bdbe-faa4f14eb5e2
    dev-disk-by\x2duuid-21dcbbd0\x2d7169\x2d4a71\x2d8e3a\x2d795063b5a7c2.device loaded active plugged /dev/disk/by-uuid/21dcbbd0-7169-4a71-8e3a-795063b5a7c2
    dev-disk-by\x2duuid-62c3663f\x2d56e2\x2d428e\x2da5a1\x2d6c3fe709d76c.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2duuid-8A86585F86584DB7.device loaded active plugged Hitachi_HTS543225A7A384
    dev-disk-by\x2duuid-ecad22ff\x2d1934\x2d45c5\x2d9059\x2d74476b69542a.device loaded active plugged /dev/disk/by-uuid/ecad22ff-1934-45c5-9059-74476b69542a
    dev-dm\x2d0.device loaded active plugged /dev/dm-0
    dev-dm\x2d1.device loaded active plugged /dev/dm-1
    dev-dm\x2d2.device loaded active plugged /dev/dm-2
    dev-dm\x2d3.device loaded active plugged /dev/dm-3
    dev-mapper-cryptpool.device loaded active plugged /dev/mapper/cryptpool
    dev-mapper-cryptpool\x2dcrypthome.device loaded active plugged /dev/mapper/cryptpool-crypthome
    dev-mapper-cryptpool\x2dcryptroot.device loaded active plugged /dev/mapper/cryptpool-cryptroot
    dev-mapper-cryptpool\x2dcryptswap.device loaded active plugged /dev/mapper/cryptpool-cryptswap
    dev-sda.device loaded active plugged Hitachi_HTS543225A7A384
    dev-sda1.device loaded active plugged Hitachi_HTS543225A7A384
    dev-sda2.device loaded active plugged Hitachi_HTS543225A7A384
    dev-sda4.device loaded active plugged Hitachi_HTS543225A7A384
    dev-ttyS0.device loaded active plugged /dev/ttyS0
    dev-ttyS1.device loaded active plugged /dev/ttyS1
    dev-ttyS2.device loaded active plugged /dev/ttyS2
    dev-ttyS3.device loaded active plugged /dev/ttyS3
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged NM10/ICH7 Family High Definition Audio Controller
    sys-devices-pci0000:00-0000:00:1c.0-0000:05:00.0-bcma0:0-net-wlp5s0.device loaded active plugged BCM4313 802.11bgn Wireless Network Adapter
    sys-devices-pci0000:00-0000:00:1c.2-0000:09:00.0-net-enp9s0.device loaded active plugged 88E8040 PCI-E Fast Ethernet Controller
    sys-devices-pci0000:00-0000:00:1d.1-usb3-3\x2d2-3\x2d2:1.0-bluetooth-hci0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/bluetooth/hci0
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged Hitachi_HTS543225A7A384
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged Hitachi_HTS543225A7A384
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device loaded active plugged Hitachi_HTS543225A7A384
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged Hitachi_HTS543225A7A384
    sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-devices-virtual-block-dm\x2d0.device loaded active plugged /sys/devices/virtual/block/dm-0
    sys-devices-virtual-block-dm\x2d1.device loaded active plugged /sys/devices/virtual/block/dm-1
    sys-devices-virtual-block-dm\x2d2.device loaded active plugged /sys/devices/virtual/block/dm-2
    sys-devices-virtual-block-dm\x2d3.device loaded active plugged /sys/devices/virtual/block/dm-3
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0
    sys-subsystem-net-devices-enp9s0.device loaded active plugged 88E8040 PCI-E Fast Ethernet Controller
    sys-subsystem-net-devices-wlp5s0.device loaded active plugged BCM4313 802.11bgn Wireless Network Adapter
    -.mount loaded active mounted /
    boot.mount loaded active mounted /boot
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    home.mount loaded active mounted /home
    proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System
    sys-fs-fuse-connections.mount loaded inactive dead FUSE Control File System
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted Temporary Directory
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    session-1.scope loaded active running Session 1 of user paul
    alsa-restore.service loaded inactive dead Restore Sound Card State
    alsa-state.service loaded inactive dead Manage Sound Card State (restore and store)
    alsa-store.service loaded inactive dead Store Sound Card State
    auditd.service not-found inactive dead auditd.service
    dbus.service loaded active running D-Bus System Message Bus
    dmeventd.service loaded inactive dead Device-mapper event daemon
    emergency.service loaded inactive dead Emergency Shell
    [email protected] loaded inactive dead Getty on tty1
    kmod-static-nodes.service loaded active exited Create list of required static device nodes for the current kernel
    lvmetad.service loaded active running LVM2 metadata daemon
    lxdm.service loaded active running LXDE Display Manager
    mkinitcpio-generate-shutdown-ramfs.service loaded inactive dead Generate shutdown-ramfs
    [email protected] loaded failed failed Automatic wireless network connection using netctl profiles
    [email protected] loaded active running Automatic wired network connection using netctl profiles
    netctl.service loaded inactive dead (Re)store the netctl profile state
    netctl@wlp5s0\x2dzuHause.service loaded active exited Automatically generated profile by wifi-menu
    ntpd.service loaded active running Network Time Service
    plymouth-quit-wait.service not-found inactive dead plymouth-quit-wait.service
    plymouth-quit.service not-found inactive dead plymouth-quit.service
    plymouth-start.service not-found inactive dead plymouth-start.service
    polkit.service loaded active running Authorization Manager
    rescue.service loaded inactive dead Rescue Shell
    syslog.service not-found inactive dead syslog.service
    systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console
    systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall
    systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats
    systemd-fsck-root.service loaded active exited File System Check on Root Device
    systemd-fsck@dev-disk-by\x2duuid-21dcbbd0\x2d7169\x2d4a71\x2d8e3a\x2d795063b5a7c2.service loaded active exited File System Check on /dev/disk/by-uuid/21dcbbd0-7169-4a71-8e3a-795063b5a7c2
    systemd-fsck@dev-disk-by\x2duuid-62c3663f\x2d56e2\x2d428e\x2da5a1\x2d6c3fe709d76c.service loaded active exited File System Check on /dev/disk/by-uuid/62c3663f-56e2-428e-a5a1-6c3fe709d76c
    systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon
    systemd-journal-flush.service loaded inactive dead Trigger Flushing of Journal to Persistent Storage
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded inactive dead Load Kernel Modules
    systemd-random-seed.service loaded active exited Load/Save Random Seed
    systemd-readahead-collect.service loaded inactive dead Collect Read-Ahead Data
    systemd-readahead-done.service loaded inactive dead Stop Read-Ahead Data Collection
    systemd-readahead-replay.service loaded inactive dead Replay Read-Ahead Data
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories
    systemd-tmpfiles-setup-dev.service loaded active exited Create static device nodes in /dev
    systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-update-utmp.service loaded active exited Update UTMP about System Reboot/Shutdown
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    upower.service loaded active running Daemon for power management
    [email protected] loaded active running User Manager for 1000
    -.slice loaded active active Root Slice
    system-getty.slice loaded active active system-getty.slice
    system-netctl.slice loaded active active system-netctl.slice
    system-netctl\x2dauto.slice loaded active active system-netctl\x2dauto.slice
    system-netctl\x2difplugd.slice loaded active active system-netctl\x2difplugd.slice
    system-systemd\x2dfsck.slice loaded inactive dead system-systemd\x2dfsck.slice
    system.slice loaded active active System Slice
    user-1000.slice loaded active active user-1000.slice
    user.slice loaded active active User and Session Slice
    dbus.socket loaded active running D-Bus System Message Bus Socket
    dmeventd.socket loaded active listening Device-mapper event daemon FIFOs
    lvmetad.socket loaded active running LVM2 metadata daemon socket
    syslog.socket loaded inactive dead Syslog Socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active running udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-cryptpool-cryptswap.swap loaded active active /dev/cryptpool/cryptswap
    dev-disk-by\x2did-dm\x2dname\x2dcryptpool\x2dcryptswap.swap loaded active active /dev/disk/by-id/dm-name-cryptpool-cryptswap
    dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dxsk3Szp4tobNGQBmFevwBgCUJNPDOEcHllDB1ZzWo40r3U5Lw7ZcpitGvQNRge12.swap loaded active active /dev/disk/by-id/dm-uuid-LVM-xsk3Szp4tobNGQBmFevwBgCUJNPDOEcHllDB1ZzWo40r3U5Lw7ZcpitGvQNRge12
    dev-disk-by\x2duuid-ecad22ff\x2d1934\x2d45c5\x2d9059\x2d74476b69542a.swap loaded active active /dev/disk/by-uuid/ecad22ff-1934-45c5-9059-74476b69542a
    dev-dm\x2d2.swap loaded active active /dev/dm-2
    dev-mapper-cryptpool\x2dcryptswap.swap loaded active active /dev/mapper/cryptpool-cryptswap
    basic.target loaded active active Basic System
    bluetooth.target loaded active active Bluetooth
    cryptsetup.target loaded active active Encrypted Volumes
    emergency.target loaded inactive dead Emergency Mode
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    nss-lookup.target loaded inactive dead Host and Network Name Lookups
    nss-user-lookup.target loaded inactive dead User and Group Name Lookups
    paths.target loaded active active Paths
    remote-fs-pre.target loaded inactive dead Remote File Systems (Pre)
    remote-fs.target loaded active active Remote File Systems
    rescue.target loaded inactive dead Rescue Mode
    shutdown.target loaded inactive dead Shutdown
    slices.target loaded active active Slices
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    syslog.target not-found inactive dead syslog.target
    timers.target loaded active active Timers
    umount.target loaded inactive dead Unmount All Filesystems
    systemd-readahead-done.timer loaded inactive dead Stop Read-Ahead Data Collection 10s After Completed Startup
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    179 loaded units listed.
    To show all installed unit files use 'systemctl list-unit-files'.
    My ~/.config/lxsession/LXDE/autostart:
    ~/.config/lxsession/LXDE/autostart
    @pcmanfm --desktop --profile LXDE
    @xscreensaver -no-splash
    My ~/.xprofile:
    ~/.xprofile
    xcompmgr -c -C -t-5 -l-5 -r4.2 -o.55 -f
    Besides that there are some files which I didn't change. I'll show you the content if necessary:
    /etc/X11/xinit/xinitrc.d/30-dbus
    /etc/xdg/autostart/at-spi-dbus-bus.desktop
    /etc/xdg/autostart/gsettings-data-convert.desktop
    /etc/xdg/autostart/parcellite-startup.desktop
    /etc/xdg/autostart/zeitgeist-datahub.desktop
    ~/.config/autostart/cairo-dock.desktop
    Steef435 wrote:I think we can agree that your keys aren't out of order, but the reaction to the keypress isn't what you expect it to be.
    Absolutely.
    Steff435 wrote:What do you mean with "the text I'm just typing"? You can't move the text cursor in the textbox in your browser using the keys?
    Yes, exactly.
    Steff432 wrote:I don't use lxdm, but I guess that doesn't use the default Gtk text entry widget, while most Gtk-based browsers as far as I know do, so it might be related to Gtk in some way. Or do you use a Qt browser? Have you tried the keys in non-Gtk software?
    I use firefox which is, as far as I know, Gtk-based. But I installed QupZilla and gabe it a try. Unfortunatelly the same error shows up there.
    I don't know if I'm right but lxde should be gtk-based itself and running a non-Gtk software in gtk-based lxde would show up the same gtk-errors to, wouldn't it? So eventually I'd have to try a non-Gtk software in a non-Gtk desktop environment in order to check whether the error doesn't show up under non-gtk software?
    Steff432 wrote:What output does xev give you?
    For the left arrow key it gets me:
    FocusOut event, serial 44, synthetic NO, window 0x2200001,
    mode NotifyGrab, detail NotifyAncestor
    FocusIn event, serial 44, synthetic NO, window 0x2200001,
    mode NotifyUngrab, detail NotifyAncestor
    KeymapNotify event, serial 44, synthetic NO, window 0x0,
    keys: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    KeyRelease event, serial 44, synthetic NO, window 0x2200001,
    root 0x7c, subw 0x0, time 2918840, (170,-16), root:(171,70),
    state 0x2000, keycode 113 (keysym 0x1008ff12, XF86AudioMute), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
    For the right arrow key it gets me:
    KeyPress event, serial 44, synthetic NO, window 0x2200001,
    root 0x7c, subw 0x0, time 2726871, (809,193), root:(810,279),
    state 0x2000, keycode 114 (keysym 0x1008ff11, XF86AudioLowerVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XmbLookupString gives 0 bytes:
    XFilterEvent returns: False
    KeyRelease event, serial 47, synthetic NO, window 0x2200001,
    root 0x7c, subw 0x0, time 2727006, (809,193), root:(810,279),
    state 0x2000, keycode 114 (keysym 0x1008ff11, XF86AudioLowerVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
    Marry Xmas by the way. :-)

  • Touchpad left and right clicks don't work on Yoga 2 pro

    Hi,
    I just bought a a yoga 2 pro. After setting up, I found that the two bottom keys, left and right keys on the trackpad do not work. Double tap also doesn't work. I reinstall the touchpad driver to no avail. Other gestures on the touchpad work fine, single tap registers as left click, two finger scroll also works. Also, when I use a blue tooth mouse, left and right key works fine.
    I am not sure if this is a hardware problem as when I swipe on the area of the two bottom keys, they register the movement. Just not click. Anyone can help me?

    Hello,
    I've had a Yoga2 Pro now for six months or so.  Just recently the left click stopped working correctly.  What I notice is that when holding down the left click button on the touch pad, and I try to drag a slider (like a volume slider or to drag a selection box or to drag a scroll box on a page, or to highlight text) and it stops holding down the click.  Sometimes it works, sometimes it keeps stopping.  
    Now, the right click is malfunctioning as well.  I press right click on something like an image, and nothing happens.  I have to right click on something 2-10 times now for it to register that I'm right clicking.
    Also, should I be able to tap the touchpad with two fingers and have that be a right click, or am I just reading that I should be able to do that on the screen (which  can)?
    I have downloaded the drivers for the y2p touchpad and the y2-13 and the generic ones from the synaptics webpage, but before I uninstall my drivers and try to install those, I want to be sure that is the correct and only possible fix.  I'm hoping its not a hardware malfunction.  I am running Win 8.1.
    Thank you.

  • My ipod's music quality is inferior. It doesnt have the surround sound/ left and right audio channel unlike my brothers ipod? is there a problem with the chip?

    I have an ipod touch 4g (8GB), I got this about 2.5 months ago, the same time my brother get his. My problem is that I noticed that audio quality is better on his device than mine. I have been listening to music and had different music devices before (non-Apple product and mobile phone) and the quality of music is better when I used to listen to those devices as well as my brother's ipod touch. Im referring to the left and right audio channels. Im not so good about the technical stuff but the best explanation I can give you is in a music or a movie, there's an effect wherein you can here a sound only at the left ear phone/speaker that you cant hear at the right earphone/speaker. I mean for example in a song, a guitar intro can be heared only at the left
    ear while the background music plays on the other ear. Or when theres and echo effect on the song that alternates sound on the left and right ear. I hope youre getting what Im trying to say. Im bothered that my ipod is fake or has an internal problem on the chips or something because I didnt bought this at an Apple Center/Mac Center. I bought it on a retailer. I am not able to visit any store or Genius Bar  or contact an apple specialist through phone because of my work schedule and work load.  I have contacted the retailer before when I tried to return it for replacement or repair but he told me that it is under Apple's warranty, not theirs. I do hope that I can get a help from you because I want to really enjoy my device. Thank you and Im looking forward for the responce/assistance form you.

    I suggest you don't apply pressure to the screen - it's a Touch - you touch the screen not push it.
    Phil

  • I use "hdmi to component converter" to connect apple tv with my old plasma tv by component cable. Sound is ok but the picture split 2screens left and right. Still can't fix it. Anyone can help or has any idea? should I try convert to av?

    I use "hdmi to component converter" to connect apple tv with my old plasma tv by component cable. Sound is ok but the picture split 2screens left and right. Still can't fix it. Anyone can help or has any idea? should I try convert to av?

    Your TV hasn't entered some odd picture in picture mode has it with  two 'inputs' side by side?
    AC

  • I need to know how to delete downloaded videos and movies from iTunes when the instructions on the support page does not work.  I have swiped the selections from left to right on the phone and nothing happens.

    Hello.
    I need help deleting videos, tv shows, and movies downloaded from itunes.  I have followed the instructions to delete from the macbook, I selected the videos I wanted to delete and right clicked to delete.  Nothing happens.  When I double click on the video it still starts playing.  I also followed the instructions to delete the videos from the iphone by swiping from left to right with nothing happening.  I opened the videos on the ipad and there is no edit selection like in the instructions on the support page. Can you please tell me how to permanently remove this content so it doesn't try to copy from each device when I want to back up the Iphone and Ipad to my macbook.  Thank you.

    Hi Shawninglewood,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    Cheers,
    - Judy

  • How can I move clips in my project more accurately? i.e. Less than one frame over left or right?

    Hi there
    I'm trying to sync some video to some audio. I have snapping turned off, yet I cant move a frame left or right any less than one frame.
    Is it not possible to move a frame anyless than one frame left or right? It still SNAPS to one frame left or one frame right.

    As Jon has told you, you CAN NOT adjust video in less than a 1 frame increment.  And I honestly doubt that even if you could, that you'd see the difference in the audio synch.  In the good old days of film editing, it was only possible to adjust the audio synch for 35mm within a 1/4 of a frame (as each frame has 4 perforations) and 16mm within a frame (as each frame has 1 perf). 
    The only way to avoid this problem (if it is a problem) is to genlock the cameras so the timing of each frame matches from camera to camera.

  • How do I deal with audio, seperate left and right and make each stereo--CS5

    I have a two mono mike recording which I can seperate into two seperate audio timeline tracks one is now left track in a seperate timline and the other is right in the other timeline, how do I make each of these tracks then into psuedo stereo tracks?  Do I have to go to Soundbooth or is there a simple way in Premiere?

    Bill G, tell me what I am missing and I'll use your method.  I have what I think you are describing, and I don't understand the need to do anything special, if you use channel mapping.
    I record a lav on one channel, and a different wireless mic on the other.  When captured, I have a clip that PR would normally treat as a single stereo track.
    BEFORE putting any clips on the timeline, select all clips and set channel mapping.  Set each channel to mono.  Now PR treats these as two mono tracks.  The output for each mono is the master track, which in my project is stereo.  I can change "volume" for each track in the mixer, etc.  but each channel is provided to the left and right  master output.
    I didn't go back to sort out what you had, but if you had two stereo tracks, one each with a left and right channel only, I can see that you needed some other solution.

  • How can I get firefox to show everything from left to right, without a curser that I have to move, in win-xp?

    It used to be ok. I had a firexox teeshirt from way far back, firefox 1.0. Then i had a hemorrhagic stroke, about 3 years ago. Now i'm back, in a new place, for two months now.
    (I use my left hand now...) and once again, i have a desktop, with win-xp (and five internal harddrives, and a 600w ps.) Anyway, for the first time with my new desktop, there is a cursor in the bottom of firefox, and it doesn't show everything, left to right unless i move it.
    I've been out of commission, with only a laptop, with win-7-64bit edition, that i got just 7 months before my stroke. My sister threw away all of my desktops...many of which i built. The doctor said i may die...so my sister didn't even wait, but threw away my CLOTHES AND BOOKS AND COMPUTERS (except for the laptop), but she saved most of my harddrives...i guess i taught her how to save harddrives.
    Anyway, it's been three years, since i've had no 32bit computer with win-xp, and i can't figure out how to make things go back to the way i'm used to. HELP! I was in your forums, when my e-mail was [email protected], which it will be again , soon. But for how, how do i get firefox to show all, left to right, without a bottom cursor? i know it's possible. (And while i'm asking questions, how can i, tony mendola, get another firefox 1.0 tee shirt? i would even pay for it, even though i'm on social security-disability, with only one hand working..and no work. I used to wear it, proudly when fixing computers for others.)

    Hi manni394, what version of Firefox are you running now?
    Firefox 22 has a new way of setting the default zoom level: it is based on your Windows font size setting. So, if you set Windows fonts to 125% (enlarged 25%), your Firefox pages also will be enlarged 25%. On pages that do not adjust their layout, you may get a horizontal scroll bar.
    To reduce the zoom on a page, hold Ctrl and tap the - key (the one on the numeric keypad or the one on the number row of the keyboard). The zoom should be reduced for each tap.
    If you want to globally adjust your zoom level to be lower, you can use either of these add-ons:
    * [https://addons.mozilla.org/firefox/addon/default-fullzoom-level/ Default FullZoom Level]
    * [https://addons.mozilla.org/firefox/addon/nosquint/ NoSquint]
    If you already have one of those add-ons, check the default/global zoom level in case it needs to be adjusted.

  • I 'm using ipad 2 and am using iwork pages.  how can i set up iwork pages so that a page scroll left to right or right to left instead of just scrolling up?

    I am using ipad 2 and am using iwork paged.  how can i set up iwork pages so that a page will scroll left to right or right to left instead of just up?

    Here you are in a forum dedicated to Pages for OSX.
    Most of us don't use Pages for iOS.
    Better ask in the iWork for iOS forum :
    https://discussions.apple.com/community/app_store/iwork_for_ios
    Yvan KOENIG (VALLAURIS, France) lundi 18 juillet 2011 22:38:20
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How do I move a page to a new location that is offscreen to the left or right on the planning screen

    When I'm in the planning screen mode, even though I have the thumbnails set on their smallest size, my website is so large that the  branches of the hierarchal layout of webpages and their various subpages stretch out to the left and right far distances off the screen. When I try to move one of the little rectangular webpage icons in the hierarchal layout in Plan Screen mode, I can't move it off screen to the left or right to change its position in my website's horizontal menu.  In other words, even at the smallest setting for the icon webpage thumbnails, there's so many icons that they go off page and I can't move a webpage icon to a position that is currently off-screen to the left or right in the menu layout.
    Any ideas how to do that?  Is there a non-graphical way to do it? Thanks!!!

    Your best bet is to reduce the thumbnail size to the smallest, then turn off thumbnails (to speed redraw), then drag in multiple steps, scrolling the Plan view each time. In the upcoming release of Muse (June 17th) you will be able to collapse vertical stacks of pages, which will means your Plan view won't be as wide. If you collapse each stack, you will only see the top level pages, and you won't have to scroll as many times. Or maybe they will all fit. What you really need is autoscroll in Plan view, which we don't currently have.
    Paul Sorrick
    Muse Engineering

  • Is there a way to tie to iPads together so that when you turn a page with a tap on one, both iPads turn a page.  I am using the ipad to replace piano sheet music.  The challenge is that ordinary sheet music is on both a left and right page.

    We are trying to use an ipad to replace ordinary paper sheet music on a piano.  When truning ordinary paper pages, it is sometimes hard to grasp one page, turn it quickly and get it to stay turned.  The idea with using an ipad is that a tap turns the page, it stays turned.  However,,,,,ordinary sheet music is on both left and right pages.  With one turn you get 2 new pages.  The ipad, being smaller results in only one page and therefore twice as many page turn taps; more taps equals less hands on the piano.  If we could tie 2 ipads together and get them both to turn the page simultaneously it would be nice.  We are trying to get used to using the ipad.  We are using ForScore app to get sheet music into the ipad; we could load one with odd pages and one with even pages.  Maybe this is getting too complicated.
    Anyway to tie 2 units together
    John

    No way to control one device from the other.  But, according to ForScore, you should be able to display two sheets side by side in landscape mode (2-up view)?  Not sure if that helps as it must make the actual print smaller to do so.
    http://www.forscoreapp.com/about/#interface

  • ? how to add page numbers in pages 5.2, starting with 2.  Pages '09 had an option to not show folio on page one.  Also any how to do left and right folios for a Tabloid?  Many trhanks

    ? how to add page numbers in pages 5.2, starting with page 2.  Pages '09 had an option to not show folio on page one.  Also any idea how to do left and right folios for a Tabloid?  Many thanks  . . .

    Hello jacquemac,
    Your first question:
    There might be a better way of achieving what you wish to do, but following these steps could help you out.
    You might want to blend in Thumbnails and Invisibles either with (cmd+shift+i and cmd+alt+p) or over the View section in the Menubar.
    1. go for Documents (right end of the Toolbar) -> Section
    2. place your cursor at the very top of your second page and click "Create new Section->Starting with this page" in the side bar on your right.
    (what you are actually doing next is setting the pagenumbers for each section you created. You can see your sections in the Thumbnail view.)
    3. click on your first page (the first and only page of your first section) and mark the checkbox "Hide on first page of section"
    4. click on your second page (the first page of your second section) and  "Insert page number" -> start at 1
    Your second question:
    Im not quite sure i understand what exactly you want to do here. One page, two columns, each column with another page number? As far as i know this is not possible.
    greetings jl

  • I have a video I 'm editing and some of the shot taken (on the left and right) I would like to remove. Is this possible to do ? If so, how?

    I have a video I 'm editing and some of the shot taken (on the left and right) I would like to remove. Is this possible to do ? If so, how?

    If you mean there are parts of the picture at the sides you want to remove, you have at least 2 choices.
    You can mask the edges of the frame or enlarge it so that the left and right sides are outside the picture area.
    The latter suggestion will reduce the quality of the video and you will also lose an equal amount from the topand bottom, though you could slide the image up or down.

Maybe you are looking for