[Solved] pacman -Qtdq is returning strange results - Please Help!

Hi guys,
I'm having an issue with the pacman command -
#pacman -Qtdq
It has been spitting out some VERY odd results. Here
[anders@Freki ~]$ pacman -Qtdq
abs
agave
alsa-utils
archlinux-artwork
arj
aspell-en
audacity
autoconf
automake
bacula
banshee
beanshell
bleachbit
bluefish
calibre
cryptsetup
dash
dosfstools
ekiga
expect
fakeroot
feh
file-roller
firefox
flex
gcalctool
gconf-editor
gedit
git
gksu
gnome-color-manager
gnome-disk-utility
gnome-media
gnome-nettool
gnome-power-manager
gnome-utils
gpart
gparted
grub2-bios
gstreamer0.10-bad-plugins
gtk-doc
handbrake
hardinfo
heirloom-mailx
hsqldb-java
hunspell-en
hyphen-en
icedtea-web
initscripts
inkscape
iputils
jfsutils
less
libdvdcss
libmspack
libmythes
libreoffice-base
libreoffice-calc
libreoffice-draw
libreoffice-extension-ct2n
libreoffice-extension-diagram
libreoffice-extension-google-docs
libreoffice-extension-hunart
libreoffice-extension-nlpsolver
libreoffice-extension-numbertext
libreoffice-extension-oooblogger
libreoffice-extension-pdfimport
libreoffice-extension-presentation-minimizer
libreoffice-extension-presenter-screen
libreoffice-extension-report-builder
libreoffice-extension-scripting-beanshell
libreoffice-extension-scripting-javascript
libreoffice-extension-scripting-python
libreoffice-extension-typo
libreoffice-extension-validator
libreoffice-extension-watch-window
libreoffice-extension-wiki-publisher
libreoffice-gnome
libreoffice-impress
libreoffice-math
libreoffice-sdk-doc
libreoffice-writer
libwpg
licenses
lm_sensors
logrotate
lucene
lvm2
man-db
man-pages
mdadm
mesa-demos
mousetweaks
mythes-en
nano
ntfsprogs
openshot
os-prober
pacman
parcellite
patch
pcmciautils
perl-passwd-md5
pkg-config
pstoedit
python2-gtkspell
python2-numpy
rdesktop
reiserfsprogs
samba
skype
skype-call-recorder
sound-juicer
soundconverter
subversion
sudo
syslog-ng
telepathy-butterfly
telepathy-gabble
telepathy-haze
telepathy-idle
telepathy-salut
telepathy-sofiasip
texlive-core
thunderbird
tomboy
tomoyo-tools
truecrypt
ufw
unace
unetbootin
uniconvertor
unrar
vala
vi
vigra
vino
virtualbox
virtualbox-additions
wgetpaste
which
wicd-gtk
xchat
xdotool
xf86-video-ati
xfsprogs
xorg-twm
xorg-utils
xorg-xclock
xorg-xinit
xsane-gimp
xscreensaver
xterm
I first noticed this when I removed lxde and awesome after I was done playing with them and pacman took out pkgs necessary to run gnome. As you can see some x pkgs are listed as orphans, along with things that were not orphans before, like abs and firefox. My orphan list used to be only a few items long because gwibber apparenly has some build items that are no longer needed after install like dee and vala.
I've tried reinstalling the listed pkgs, ALL of my installed pkgs, and nothing. It keeps reporting this same string of pkgs and it is making me afraid to remove xscreensaver (the one thing on the list I don't want to keep) because I am afriad of pacman taking out too many pkgs. Installs seem to be working just fine, and I only use pacman to install pkgs on this system, I always use
sudo pacman -S pkgname
or
sudo pacman -U /path/to/aur/pkg
and I only update via
sudo pacman -Syu
So is there any way to "rebuild" the dependancy tree that I don't know about? I looked thourgh the Wiki and did not see anything.
Could I have removed a pkg(s) that has broken Pacman's dependancy tree?
Is there any more info that you guys might need to help me out with this?
- Thanks for any help,
Anders H
Last edited by Anders H (2012-02-14 09:34:13)

For some reason theses packages are installed as a dependency for another package, but they're not required by any package.
Can you post the output of e.g. 'pacman -Qi less'?
-D, --database
Modify the package database. This operation allows you to modify
certain attributes of the installed packages in pacman’s database.
At the moment, you can only change the install reason using
--asdeps and --asexplicit options.
[karol@black ~]$ pacman -Qi less
Name : less
Version : 444-3
URL : http://www.greenwoodsoftware.com/less
Licenses : GPL3
Groups : base
Provides : None
Depends On : ncurses pcre
Optional Deps : None
Required By : None
Conflicts With : None
Replaces : None
Installed Size : 220,00 KiB
Packager : Allan McRae <[email protected]>
Architecture : i686
Build Date : pon, 6 lut 2012, 03:25:08
Install Date : czw, 9 lut 2012, 21:09:29
Install Reason : Explicitly installed
Install Script : No
Description : A terminal based program for viewing text files
[karol@black ~]$ pacman -Qi less | grep -e "Required By" -e "Install Reason"
Required By : None
Install Reason : Explicitly installed
[karol@black ~]$ pacman -Qdt
[karol@black ~]$ pacman -D --asdeps less
less: install reason has been set to 'installed as dependency'
[karol@black ~]$ pacman -Qi less | grep -e "Required By" -e "Install Reason"
Required By : None
Install Reason : Installed as a dependency for another package
[karol@black ~]$ pacman -Qdt
less 444-3
I've changed the install reason and now 'less' shows up as an orphan.

Similar Messages

  • Not getting Result please Help

    Hi All
    query_string VARCHAR2(2000);
    query_string are EMPNO,ENAME
    for rec1 in (SELECT query_string FROM p_table_name ) loop
    utl_file.put_line(v_file, rec1.result1);
    END LOOP;
    not getting Result please Help
    Regards

    You may look at this:
    michaels>  DECLARE
       cur            sys_refcursor;
       query_string   VARCHAR2 (2000) := '';
       p_table_name   VARCHAR2 (30)   := UPPER ('emp');
       p_stmt         LONG;
    BEGIN
       FOR c IN (SELECT ROWNUM rn, column_name, COUNT (*) OVER () cnt
                   FROM user_tab_cols
                  WHERE table_name = p_table_name AND hidden_column = 'NO')
       LOOP
          query_string :=
             query_string || c.column_name
             || CASE
                WHEN c.rn != c.cnt
                   THEN ' || ''|'' || '
             END;
       END LOOP;
       p_stmt := 'select ' || query_string || ' FROM ' || p_table_name;
    -- DBMS_OUTPUT.put_line (p_stmt);
       OPEN cur FOR p_stmt;
       FOR rec1 IN (SELECT EXTRACTVALUE (t.COLUMN_VALUE, '/ROW//text()') result1
                      FROM TABLE (XMLSEQUENCE (cur)) t)
       LOOP
          /*  replace with utl_file in case ... */
          DBMS_OUTPUT.put_line (rec1.result1);
       END LOOP;
       CLOSE cur;
    END;
    7369|SMITH|CLERK|7902|17-DEC-80|800||20
    7499|ALLEN|SALESMAN|7698|20-FEB-81|1600|300|30
    7521|WARD|SALESMAN|7698|22-FEB-81|1250|500|30
    7566|JONES|MANAGER|7839|02-APR-81|2975||20
    7654|MARTIN|SALESMAN|7698|28-SEP-81|1250|1400|30
    7698|BLAKE|MANAGER|7839|01-MAY-81|2850||30
    7782|CLARK|MANAGER|7839|09-JUN-81|2450||10
    7788|SCOTT|ANALYST|7566|19-APR-87|3000||20
    7839|KING|PRESIDENT||17-NOV-81|5000||10
    7844|TURNER|SALESMAN|7698|08-SEP-81|1500|0|30
    7876|ADAMS|CLERK|7788|23-MAY-87|1100||20
    7900|JAMES|CLERK|7698|03-DEC-81|950||30
    7902|FORD|ANALYST|7566|03-DEC-81|3000||20
    7934|MILLER|CLERK|7782|23-JAN-82|1300||10
    PL/SQL procedure successfully completed.

  • HT4623 why my device  had "no service" even I already put my sim card..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    why my device  had "no service" ..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    See if anything in this support document help http://support.apple.com/kb/ts4429

  • I can't watch Dailymotion videos on my iPad but can do so on my iPhone and PC. Very strange. Please help !

    I can't watch Dailymotion videos on my iPad but can do so on my iPhone and PC. Very strange. Please help !

    Take it to an Apple store genius bar to have the techs see what your options are for repair/replacement.  An out-of-warranty replacement is $149 in the US for the iPhone 4.

  • Help - count function returns strange results

    hi everyone,
    here's my scenario: i'm trying to get the NUMBER OF REPORTS and NUMBER OF
    IMAGES GROUP BY MONTH from the two tables below.
    REPORT
    reportid(*primary key)
    date
    IMAGE
    reportid(*foreign key referring to report's table)
    image
    sample output:
    MONTH NO.OF REPORTS NO. OF IMAGES
    feb 01 10 9
    mar 01 12 8
    my SQL goes like this:
    select to_char(date, 'month-yy'),
    count(REPORT.reportid), count(IMAGE.reportid)
    from REPORT, IMAGE
    where REPORT.reportid = IMAGE.reportid
    group by to_char(date, 'month-yy')
    the above sql yielded strange results, number of images is equal to the number of reports, which is of course wrong! as one report may or may not contain one or more image.
    i dont know what's wrong with the above statement, but if i were to group it
    by REPORTID and DAY rather than MONTH, then amazingly it works! what's
    wrong with the count, why does it give me the same result if i group by
    MONTH.
    can anyone shed some light on this?

    try using the following example:
    Table TEST_REPORT
    RPTID RPTDATE
    1 02-JAN-01
    3 02-JAN-01
    2 02-JAN-01
    5 11-FEB-01
    6 11-FEB-01
    7 11-FEB-01
    Table TEST_IMAGE
    RPTID IM
    1 1
    2 1
    3 1
    SQL:
    select to_char(rptdate,'MON-YYYY'),
    sum(decode(a.rptid,null,0,1)) report_cnt,
    sum(decode(b.rptid,null,0,1)) image_cnt
    from test_report a, test_image b
    where a.rptid = b.rptid(+)
    group by to_char(rptdate,'MON-YYYY');
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by skcedric:
    hi everyone,
    here's my scenario: i'm trying to get the NUMBER OF REPORTS and NUMBER OF
    IMAGES GROUP BY MONTH from the two tables below.
    REPORT
    reportid(*primary key)
    date
    IMAGE
    reportid(*foreign key referring to report's table)
    image
    sample output:
    MONTH NO.OF REPORTS NO. OF IMAGES
    feb 01 10 9
    mar 01 12 8
    my SQL goes like this:
    select to_char(date, 'month-yy'),
    count(REPORT.reportid), count(IMAGE.reportid)
    from REPORT, IMAGE
    where REPORT.reportid = IMAGE.reportid
    group by to_char(date, 'month-yy')
    the above sql yielded strange results, number of images is equal to the number of reports, which is of course wrong! as one report may or may not contain one or more image.
    i dont know what's wrong with the above statement, but if i were to group it
    by REPORTID and DAY rather than MONTH, then amazingly it works! what's
    wrong with the count, why does it give me the same result if i group by
    MONTH.
    can anyone shed some light on this? <HR></BLOCKQUOTE>
    null

  • [solve] Screen resolution changed after upgrading xorg please help?

    Ive been using arch for almost a year now and have grown to like it a lot.  I recently updated my system with pacman -Syu. during this process my xorg was updated and now im having issues.
    I usually run my monitor at 1152 x 864 running at 85 for a refresh rate.  Id like to continue doing that.
    Since updating i now run at 1280x720.
    Everything looks retarded as a result.. and id really like to get things back to normal.  Ive pasted my xorg.conf here.. the modeline for the correct resolution is still there but it would seem xorg isnt respecting it.
    I will admit to using a REALLY old radeon graphics card (radeon 7000) but it has never been an issue in the past with arch or any other distro.
    Please help me restore my usual openbox display settings.
    Thanks.
    thewayofzen
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/artwiz-fonts"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "ddc"
    Load "extmod"
    Load "int10"
    Load "vbe"
    Load "record"
    Load "GLcore"
    Load "dbe"
    Load "xtrap"
    Load "dri"
    Load "glx"
    Load "extmod"
    Load "type1"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 330 240 # mm
    Identifier "Monitor0"
    VendorName "DEL"
    ModelName "DELL D1025TM"
    ### Comment all HorizSync and VertRefresh values to use DDC:
    HorizSync 30.0 - 85.0
    VertRefresh 50.0 - 120.0
    Modeline "1152x864_85.00" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync
    Gamma 1.71
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "PanelOff" # [<bool>]
    #Option "DDCMode" # [<bool>]
    #Option "MonitorLayout" # [<str>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "MergedFB" # [<bool>]
    #Option "CRT2HSync" # [<str>]
    #Option "CRT2VRefresh" # [<str>]
    #Option "CRT2Position" # [<str>]
    #Option "MetaModes" # [<str>]
    #Option "MergedDPI" # [<str>]
    #Option "MergedXinerama" # [<bool>]
    #Option "MergedXineramaCRT2IsScreen0" # [<bool>]
    #Option "MergedNonRectangular" # [<bool>]
    #Option "MergedMouseRestriction" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "BIOSHotkeys" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "ConstantDPI" # [<bool>]
    Option "AGPMode" "4"
    Option "AGPFastWrite" "True"
    Option "EnablePageFlip" "True"
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "Radeon RV100 QY [Radeon 7000/VE]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    # SubSection "Display"
    #DefaultDepth 24
    SubSection "Display"
    Depth 1
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1200x720" "1152x864" "1024x768" "800x600" "720x400" "720x350" "640x480"
    EndSubSection
    EndSection
    # Viewport 0 0
    # Depth 1
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 4
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 8
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 15
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 16
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 24
    # EndSubSection
    #EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Last edited by thewayofzen (2007-11-16 12:22:55)

    Is there anything insteresting in /var/log/Xorg.0.log?  Have you tried switching the driver to vesa?
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/artwiz-fonts"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "ddc"
    Load "int10"
    Load "vbe"
    Load "record"
    Load "GLcore"
    Load "dbe"
    Load "xtrap"
    Load "glx"
    Load "extmod"
    Load "type1"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "DEL"
    ModelName "DELL D1025TM"
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "Radeon RV100 QY [Radeon 7000/VE]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1152x864"
    EndSubSection
    EndSection
    Try using the above as your xorg.conf file - I've cleaned it up a bit and removed everything that's not essential.  If it works you can always add all the that you need from your old xorg.conf file and if it doesn't - well, I guess it won't hurt to try...
    Last edited by fwojciec (2007-11-14 07:09:02)

  • Baffled by a strange bug - please help!!!

    Hi all,
    I am baffled by a bug in a program I am working on that I just
    can't understand. Here is the code that causes a SIGSEGV crash:
    268      int k = wfall_pixbuf.rowstride;
    269      pix[0] = pix[ -k ];
    270      pix[0] = pix[ -wfall_pixbuf.rowstride ];
    Output of gdb:
    Program received signal SIGSEGV, Segmentation fault.
    0x00000000004152b2 in Display_Waterfall () at display.c:270
    270          pix[0] = pix[ -wfall_pixbuf.rowstride];
    wfall_pixbuf is a struct that encapsulates a GdkPixbuf together
    with some variables that hold the values of some properties like
    rowstride above.
    I added lines 268 and 269 in despair and the program
    works well if I comment out line 270, which does (I think)
    the same job as 269. I can't see how wfall_pixbuf.rowstride
    can change value from line 268 to 270???
    Please help!!!

    danielsoft wrote:
    hello,
    I think it's a type issue: what type is wfall_pixbuf.rowstride ?
    in the case
    int k = wfall_pixbuf.rowstride;
    pix[0] = pix[ -k ];
    you are making a negative value out of type "int" - precisely signed int
    when wfall_pixbuf.rowstride is unsigned, the result is undefined...
    what does
    pix[0] = pix[ -(int)wfall_pixbuf.rowstride ];
    do? should work the same as lines 268 and 269
    Ahh, thank you very much! rowstride is of type guint, which is
    a GTK2 type definition, essentially I think it boils down to
    unsigned int. So that was the issue :-)
    I am surprised that I didn't make a mistake of this sort till now
    but its never too late.... ;-)

  • HT5636 I was typing in a word for Mac document and I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    I was typing in a word for Mac document and I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    Simply type command 8 again. That toggles the "show paragraphs" function.

  • Computer is acting very strange. Please help.

    My computer has starter acting very strange. It has start to take ages to boot up, and it runs a progress bar on the grey apple screen (as if its was booting in safe mode, but its not). I cant seem to save any files with any Apps. When I try to save documents in office it tells me ether the file name or path doesn't exist, it is open by another program, or its read only. Office also keeps coming up with errors saying im out of memory. Other apps just come up with errors when I try and save files.
    The last thing I did before my computer started acting up, was to increase the size of a Windows partition. Using Winclone I copied my Windows OS, then added the partition back to my mac, and re-partitioned it to a larger size. I formatted it into NTFS using Tuxera, and then used Winclone to put Windows back on. Everything seemed to go smoothly, and the Windows OS is fine.
    Please Help!

    Yes, iRadu is correct.
    If Disk Utility can't fix it, you'll need a more robust utility for the repair. I would recommend DiskWarrior. It is the best at directory repairs. It rebuilds then actually replaces your old directory. I feel every Mac owner should have a copy.
    Make sure you get the disk so you can boot up on it to run repairs. You can also install it on another drive and run it from there to repair this one. DW works faster that way.
    I use DW once a month to try and catch errors in my system from getting too far out of hand.
    DW is the only utility I would recommend to repair +Keys out of order+. It's a pretty serious error.
    Do you have a good backup...one with no issues?
     DALE
    p.s. Here's a rewiew of DiskWarrior 4.

  • HT5636 I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    Simply type command 8 again. That toggles the "show paragraphs" function.

  • Iclod Id Strange Problem Please Help

    I have iPhone 4 i Used my icloud ID On It After Some Time i erased My Id From iPhone 4 And Used Same Id On My New Purchased iPhone 4s
    After That i Update my iPhone 4 to 7.0.4 IOS After Update again iphone 4 wants my iclod id for activation witch i already erased from it and using on new 4s
    so i remove id from 4s and gives my id and pass in iphone 4 to activate but reply come This Iclod ID Not sign with this iPhone even my id name Like abc....[email protected] is showing me on icloud login stage now i m not able to login my own icloud id on iPhone 4 & not able to activate even i alredy erased before update to 7.0.4 and using on new 4s same id. Please help me my id pass is working i checked 3 time with icloud.com and also find my iPhone off but i m still not able to login or activate my own id witch appear on login screen

    As i said on activation lock iphone shows my own id but when i put id & pass reply comes not sign with this iphone hows that possible activation lock screen display my own id and not accept ?
    even i erase my id from this device becuse i m using on now iphone 4s and when i restore my iphone 4 device again ask me for my id pass witch i already erased before using on new 4s why ?
    i never change my is or pass then why not accepting ? activation lock screen ghul....[email protected] apear my own ID and now said not sign with this id is this happen coz i m using it now 4s ?
    or what ? why asking me again i already erased this id from iphone 4 before using on 4s this is not good i need solution i can provide all details of my id if any apple support team member wants they can check this id locked on my iphone 4 then ehy not accept now

  • Oracle:JDBC Call returns no results, SQL*Plus returns 1 record, Please help

    Any help would be greatly appreciated.
    Running 9.2.0.5.0, and using latest 9.2 JDBC 1.4_g drivers in thin mode.
    Execute the following query from SQL*Plus and it returns one row, from JDBC using a PreparedStatement, I get no results. Here's the query, table def, record, etc.:
    Query:
    SELECT
    ID_WEB_FRM,ID_WEB_SIT,CDE_LVL_1_FUNC,
    CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID
    FROM
    WEB_FRM
    WHERE
    ID_WEB_FRM = ' '
    OR
    (ID_WEB_SIT = 'test' AND CDE_LVL_1_FUNC = ' '
    AND CDE_LVL_2_FUNC = 'u2T' AND NUM_WEB_FUNC_PG = 1
    AND NUM_WEB_PG_ID = 0)
    Record returned from SQL*Plus:
    ID_WEB_FRM ID_WEB_SIT CDE CDE NUM_WEB_FUNC_PG NUM_WEB_PG_ID
    NfRRmc5XZu test u2T 1 0
    Both in the data returned and the query, there are no blanks, but they are a single space instead (hard to see in message here).
    Java code:
    int count = 1;
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++,form.getSiteID());
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++, form.getFunctionID());
    findDBNameStatement.setInt(count++,form.getPageNumber());
    findDBNameStatement.setInt(count++,form.getSectionNumber());
    ResultSet resultSet = findDBNameStatement.executeQuery();
    ResultSetMetaData metaData = resultSet.getMetaData();
    resultSet.next() returns false
    DB table:
    CREATE TABLE web_frm (
    ID_WEB_FRM varchar2(10) NOT NULL,
    ID_WEB_SIT varchar2(20) NOT NULL,
    NAM_WEB_FRM varchar2(40),
    TXT_EMAIL_SUBJ varchar2(50),
    CDE_LVL_1_FUNC char(3),
    CDE_LVL_2_FUNC char(3) NOT NULL,
    NUM_WEB_FUNC_PG int NOT NULL,
    NUM_WEB_PG_ID smallint NOT NULL,
    DTE_WEB_FRM_EFF date NOT NULL,
    DTE_WEB_FRM_TRM date,
    CDE_VLDT_RUL char(3),
    DTE_LAST_EXPRT date,
    TXT_CNFRMN_MSG varchar2(4000),
    IND_UPDT_ALWD char(1) NOT NULL,
    TXT_RECAP_HDR varchar2(4000),
    TXT_RECAP_FTR varchar2(4000),
    CDE_WEB_OBJ char(3),
    NUM_MAX_FRM_WIDTH number(4,0),
    IND_RECAP_PG char(1) NOT NULL,
    IND_CNFRM_PG char(1) NOT NULL,
    IND_DSPL_CNFRM_NUM char(1) NOT NULL,
    CNT_SUBM_MAX int,
    TXT_CHCE_ADD_MSG varchar2(255),
    TXT_CHCE_MOD_MSG varchar2(255),
    TXT_WEB_HDR varchar2(4000),
    TXT_WEB_FTR varchar2(4000),
    TXT_WAIT_LIST_MSG varchar2(255),
    FORMOBJECTHEIGHT int NOT NULL,
    FORMOBJECTWIDTH int NOT NULL
    ALTER TABLE web_frm ADD ( CONSTRAINT PK_web_frm PRIMARY KEY (ID_WEB_FRM));
    ALTER TABLE web_frm ADD ( CONSTRAINT UK_web_frm UNIQUE (ID_WEB_SIT,CDE_LVL_1_FUNC,CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID)) ;
    Thanks,
    Matt

    That's not quite right. From the javadocs:
    next
    public boolean next()
    throws SQLException
    Moves the cursor down one row from its current position. A ResultSet cursor is initially positioned before the first row; the first call to the method next makes the first row the current row; the second call makes the second row the current row, and so on.
    If an input stream is open for the current row, a call to the method next will implicitly close it. A ResultSet object's warning chain is cleared when a new row is read.
    Returns:
    true if the new current row is valid; false if there are no more rows
    Throws:
    SQLException - if a database access error occurs

  • JDBC Call returns no results, SQL*Plus returns 1 record, Please help!

    Any help would be greatly appreciated.
    Running 9.2.0.5.0, and using latest 9.2 JDBC 1.4_g drivers in thin mode.
    Execute the following query from SQL*Plus and it returns one row, from JDBC using a PreparedStatement, I get no results. Here's the query, table def, record, etc.:
    Query:
    SELECT
    ID_WEB_FRM,ID_WEB_SIT,CDE_LVL_1_FUNC,
    CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID
    FROM
    WEB_FRM
    WHERE
    ID_WEB_FRM = ' '
    OR
    (ID_WEB_SIT = 'test' AND CDE_LVL_1_FUNC = ' '
    AND CDE_LVL_2_FUNC = 'u2T' AND NUM_WEB_FUNC_PG = 1
    AND NUM_WEB_PG_ID = 0)
    Record returned from SQL*Plus:
    ID_WEB_FRM ID_WEB_SIT CDE CDE NUM_WEB_FUNC_PG NUM_WEB_PG_ID
    NfRRmc5XZu test u2T 1 0
    Both in the data returned and the query, there are no blanks, but they are a single space instead (hard to see in message here).
    Java code:
    int count = 1;
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++,form.getSiteID());
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++, form.getFunctionID());
    findDBNameStatement.setInt(count++,form.getPageNumber());
    findDBNameStatement.setInt(count++,form.getSectionNumber());
    ResultSet resultSet = findDBNameStatement.executeQuery();
    ResultSetMetaData metaData = resultSet.getMetaData();
    resultSet.next() returns false
    DB table:
    CREATE TABLE web_frm (
    ID_WEB_FRM varchar2(10) NOT NULL,
    ID_WEB_SIT varchar2(20) NOT NULL,
    NAM_WEB_FRM varchar2(40),
    TXT_EMAIL_SUBJ varchar2(50),
    CDE_LVL_1_FUNC char(3),
    CDE_LVL_2_FUNC char(3) NOT NULL,
    NUM_WEB_FUNC_PG int NOT NULL,
    NUM_WEB_PG_ID smallint NOT NULL,
    DTE_WEB_FRM_EFF date NOT NULL,
    DTE_WEB_FRM_TRM date,
    CDE_VLDT_RUL char(3),
    DTE_LAST_EXPRT date,
    TXT_CNFRMN_MSG varchar2(4000),
    IND_UPDT_ALWD char(1) NOT NULL,
    TXT_RECAP_HDR varchar2(4000),
    TXT_RECAP_FTR varchar2(4000),
    CDE_WEB_OBJ char(3),
    NUM_MAX_FRM_WIDTH number(4,0),
    IND_RECAP_PG char(1) NOT NULL,
    IND_CNFRM_PG char(1) NOT NULL,
    IND_DSPL_CNFRM_NUM char(1) NOT NULL,
    CNT_SUBM_MAX int,
    TXT_CHCE_ADD_MSG varchar2(255),
    TXT_CHCE_MOD_MSG varchar2(255),
    TXT_WEB_HDR varchar2(4000),
    TXT_WEB_FTR varchar2(4000),
    TXT_WAIT_LIST_MSG varchar2(255),
    FORMOBJECTHEIGHT int NOT NULL,
    FORMOBJECTWIDTH int NOT NULL
    ALTER TABLE web_frm ADD ( CONSTRAINT PK_web_frm PRIMARY KEY (ID_WEB_FRM));
    ALTER TABLE web_frm ADD ( CONSTRAINT UK_web_frm UNIQUE (ID_WEB_SIT,CDE_LVL_1_FUNC,CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID)) ;
    Thanks,
    Matt

    I have verified the parameters and such, and if I run as a Statement instead of a PreparedStatement, the query works fine. After some more troubleshooting, I narrowed the problem down, but not sure of the fix.
    If I eliminate teh extra parameters and simplify things to:
    SELECT ID_WEB_FRM FROM WEB_FRM WHERE ID_WEB_SIT = 'test' AND CDE_LVL_2_FUNC = 'u2T' AND NUM_WEB_FUNC_PG = 1 AND NUM_WEB_PG_ID = 0
    The code works. But if I add the additional WHERE clause of CDE_LVL_1_FUNC = ' ' (has single space), it returns no data (record in the DB has single space in this new column. Query that does not work:
    SELECT ID_WEB_FRM FROM WEB_FRM WHERE ID_WEB_SIT = 'test' AND CDE_LVL_1_FUNC = ' ' AND CDE_LVL_2_FUNC = 'u2T' AND NUM_WEB_FUNC_PG = 1 AND NUM_WEB_PG_ID = 0
    It appears the JDBC Driver is trimming the parameter when it is a space when set through a PreparedStatement.setString(2," ")

  • ResultSet returning strange results for BIGINT datatype, using rs.getLong()

    In a MySQL db I have a value of 10 for the BIGINT primary key column 'account', which is auto-incrementing.
    The result of rs.getLong("account") is:
    4.294967305E9
    Not exactly the answer I was looking for. The other column, 'phoneNum', also a BIGINT, and also using rs.getLong("phoneNum") is returning correctly.
    And ideas why?

    The number in question is 4,294,967,305. There was another thread here recently about MySQL using numbers that are just slightly above 2^32 (which is 4,294,967,296) in auto-increment columns.

  • ProxyHistory returns strange results

    Hi,
    I am trying to programmatically access the mailbox into which I most recently proxied via the GUI.
    From what I understand, a call to Groupwise.Account.Application.ProxyHistory should return a collection of mailboxes into which I recently proxied via the Groupwise GUI. When I iterate over the returned collection, some of the mailboxes are missing or are replaced by other mailboxes in the list.
    For example, my Proxy list on the Groupwise GUI shows:
    Me
    Proxy...
    1. UserA
    2. UserB
    3. UserC
    4. UserD
    5. UserE
    6. UserF
    7. UserG
    8. UserH
    9. UserI
    A call to the ProxyHistory function returns:
    1. Me
    2. Me
    3. Me
    4. UserD
    5. UserE
    6. UserE
    7. UserG
    8. UserG
    9. UserG
    Is this discrepancy a known issue? Is there a workaround for this problem?
    Thank you,
    M

    There's no such method
    There's
    getProxyListRequest
    If that's what you mean. But no method called ProxyHistory
    OTOH, there's such an animal in OBJECT API. Perhaps you should post on
    that forum.
    On 7/20/2010 12:05 PM, MK wrote:
    > Hi,
    > I am trying to programmatically access the mailbox into which I most
    > recently proxied via the GUI.
    > From what I understand, a call to
    > Groupwise.Account.Application.ProxyHistory should return a collection of
    > mailboxes into which I recently proxied via the Groupwise GUI. When I
    > iterate over the returned collection, some of the mailboxes are missing
    > or are replaced by other mailboxes in the list.
    > For example, my Proxy list on the Groupwise GUI shows:
    > Me
    > Proxy...
    > 1. UserA
    > 2. UserB
    > 3. UserC
    > 4. UserD
    > 5. UserE
    > 6. UserF
    > 7. UserG
    > 8. UserH
    > 9. UserI
    > A call to the ProxyHistory function returns:
    > 1. Me
    > 2. Me
    > 3. Me
    > 4. UserD
    > 5. UserE
    > 6. UserE
    > 7. UserG
    > 8. UserG
    > 9. UserG
    > Is this discrepancy a known issue? Is there a workaround for this problem?
    > Thank you,
    > M

Maybe you are looking for

  • InDesign and truncated hyperlinks after PDF conversion

    I have encountered what may be a similar problem to the one experienced by Greg Hogan posted on 10-01-2007 (http://www.adobeforums.com/webx?224@@[email protected]) I have a Dell Inspiron 6000 with a 1.5 GHz Pentium M processor, 2 GB RAM, Windows XP/P

  • Checksum data mismatch

    Hi people! I'm following the procedure mention the HOW-TO document called "Build Tabular Forms for Multi-Row Operations" and I'm having problem with the checksum part. After I recreate the code mention in the paper, I can run the page but I get the c

  • What's the difference between the Core 2 Duo and the Core Duo

    I recently bought a new Macbook (Original) with an Intel Core 2 Duo processor. I gave my old one to my younger cousin. It has just an Intel Core Duo processor. What does that "2" mean? Does it mean the processor is faster? I was guessing it means tha

  • Azure Mobile Service - Blob upload

    Hi, I am deepak , we have requirement of Uploading image from azure mobile service to azure blob, suppose if the image upload interrupted because of network problem , is it resume the upload from where is stopped when next time network is available ?

  • Windows 8 and 8.1 and Bitlocker

    Im having major issues using Bitlocker on my Windows machine. My machine was working fine before I decided to use Bitlocker.  I ran the encryption, which took several hours and it said that it was fully encrypted and to restart the machine. On restar