Page 1 of 1

Oracle Sparse lookup with like option not working

Posted: Tue Dec 30, 2008 12:17 pm
by RAJEEV KATTA
I have a scenario where in I am running the below sparse lookup

SELECT
PATIENT.FIRST_NAME
FROM
PATIENT PATIENT
WHERE
PATIENT.FIRST_NAME LIKE 'ORCHESTRATE.FIRSTNAME%'

the input FIRTSNAME is coming from a row generator.The datatype is varchar(15) for both the oracle database table & row generator.Even though there is a matching record its rejecting the record.The value in the database table is 'CHARLENE' & the value in row generator is 'CHARLE'.