Select to view content in your preferred language

Query with "nvl" not working at 10.2, works at 10sp5

4996
11
02-04-2014 09:40 AM
JeffPace
MVP Alum
I have a query (where clause) that does not work at 10.2
The identical query works at 10sp5.  Data are stored in oracle

any ideas?

nvl(PROP_HN,' ') LIKE '1112%'
AND nvl(PROP_SN,' ') LIKE UPPER('MANATEE%')
AND nvl(PROP_ST1,' ') LIKE UPPER('AVE%')
AND nvl(PROP_ST2,' ') LIKE '%'
AND nvl(PROP_DIR,' ') LIKE '%'
AND (nvl(PROP_PLC,' ') LIKE '%'
OR nvl(PROP_PLC,' ') LIKE '%'
0 Kudos
11 Replies
JeffPace
MVP Alum
Ours is simple select using nvl

works at 10
fails at 10.2
0 Kudos
JeffFerdinand
Occasional Contributor
The following explains the issue.  I have followed the steps.  Our queries are now processing properly.  http://support.esri.com/en/knowledgebase/techarticles/detail/41561
0 Kudos