Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Strange Data issue.....
Do a select distinct length(gender)
where rtrim(gender)='M'
-----Original Message-----
From: root@fatcity.com@SUNGARD On Behalf Of April Wells <awells@csedge.com>
Sent: Thursday, August 22, 2002 11:24 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: Strange Data issue.....
It also does not explain why it only returns erroneous results for males but not any of the females.
Why is your gender column wider than one character? This gives you 36 possibilities if you limit it to 'just' numbers and letters.
-----Original Message-----
From: Khedr, Waleed [mailto:Waleed.Khedr@FMR.COM]
Sent: Thursday, August 22, 2002 10:04 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: Strange Data issue.....
This will not fix it.
Group by race,gender should return only one row for each unique combination of both columns.
I can not help on this except advising to check the ASCII for both columns or check for special characters in these columns if they are wider that one char.
Regards,
Waleed
-----Original Message-----
From: Mercadante, Thomas F [mailto:NDATFM@labor.state.ny.us]
Sent: Thursday, August 22, 2002 10:14 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: Strange Data issue.....
Denham,
Your "group by" does not match what you are selecting, thus the results are wrong.
Change your query as follows:
select race||','||gender,count(*)
from pers
group by race||','||gender
Hope this helps.
Tom Mercadante
Oracle Certified Professional
-----Original Message-----
From: Denham Eva [mailto:EvaD@tfmc.co.za]
Sent: Thursday, August 22, 2002 8:59 AM
To: Multiple recipients of list ORACLE-L
Subject: Strange Data issue.....
Hello Gurus,
I have a problem which I hope someone can help me with.
I am trying to clean up some data on a table. This table happens to be a personnel table.
In this table there are two columns RACE and GENDER.
The select used is :
select race||','||gender||','||count(*)
from pers
group by race, gender;
The result is as follows:
A,F,62
A,M,613
A,M,35
A,,15
C,F,34
C,M,198
C,M,4
C,,2
I,F,13
I,M,69
I,M,1
W,F,205
W,M,972
W,M,28
W,,15
The problem is that the result returns double Ms, M indicating Male. As highligthed above
I have tried converting to ascii to see if they are different in anyway but both Ms return ascii 77.
Does anyone have any thoughts on this?
TIA
Denham Eva
Oracle DBA
In UNIX Land
On a quiet Night, you can hear the Windows machines reboot.
DISCLAIMER
This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. TFMC, its holding company, and any of its subsidiaries each reserve the right to monitor and manage all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorized to state them to be views of any such entity.
This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal - For more information please visit www.marshalsoftware.com << File: http://www.marshalsoftware.com >>
- InterScan_Disclaimer.txt << File: InterScan_Disclaimer.txt >>
![]() |
![]() |