Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Problem with joining char field to varchar2 field
Hi all,
we are currently running Oracle 9.2.0.1.0 on AIX 4.3.
I am trying to join two tables on a varchar2(50) field and a CHAR(30) field where both are defined as NOT NULL. Although these two fields have the same value inserted Oracle interprets these two columns to be NOT equal. I have tried the same SQL test on a Window 2000 Oracle 9.2.0.3.0 environment without any problems. Is this a bug in Oracle 9201 or a problem with AIX ? Thanks in advance for any help.
The following shows the process I have used to create the problem.
CREATE TABLE PTMBT01
(COL1_ID NUMBER(10) NOT NULL
, COL2 CHAR(30) NOT NULL)
, COL2 VARCHAR2(50) NOT NULL)
SELECT *
FROM PTMBT01 T01
, PTMBT02 T02
WHERE T01.COL2 = T02.COL2;
Thanks in advance,
Warren.
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue May 04 2004 - 19:48:22 CDT
![]() |
![]() |