Very interesting. Do you have any suggestions on how to resolve this issue?
-----Original Message-----
From: web400-bounces@xxxxxxxxxxxx [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Dean, Robert
Sent: Tuesday, October 21, 2008 8:41 AM
To: Web Enabling the AS400 / iSeries
Subject: Re: [WEB400] sql in php with paging
If the target system is on V5R4 or older, that's not the problem. The UPPER function in the WHERE clause is causing the optimizer to choose the Classic Query Engine rather than the SQL Query Engine, and the row_number() function isn't supported in the CQE.
-----Original Message-----
From: web400-bounces@xxxxxxxxxxxx [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Niels Liisberg
Sent: Tuesday, October 21, 2008 7:34 AM
To: 'Web Enabling the AS400 / iSeries'
Subject: [WEB400] sql in php with paging
Hi Joel;
The problem is that ROW_NUMBER() is not based on the result set defined by
the where clause - but rather base input data set...
My gues is that rows from 21 to 40 in the physical file does not contain any
thing with "Brooks"
For that kind of cursors I suggest that you rather use "scrolling cursors"
where you can give the starting row number as a parameter for the fetch
(don't know If that is supported in the PNP toolbox yet btw.)
Best regards
Niels Liisberg
IceBreak Chief SW Architect
System & Metode Technologies
Håndværkersvinget 8, DK-2970 Hørsholm
Phone: +45 70 20 36 10
Fax: +45 70 20 30 11
Direct: +45 45 177 055
Mobile: +45 31 158 861
E-mail: nli@xxxxxxxxxxxxxxxxx
Web: www.system-method.com and www.Icebreak.org
-----Original Message-----
From: web400-bounces@xxxxxxxxxxxx [mailto:web400-bounces@xxxxxxxxxxxx] On
Behalf Of Burke, Joel
Sent: 20. oktober 2008 20:14
To: web400@xxxxxxxxxxxx
Subject: [WEB400] sql in php with paging
I have written a php script that displays a list of individuals. The script
uses paging with 20 results per screen and searching is allowed on the name
field or id number. I am having an issue coding a case insensitive search.
Here is an example of my sql that works but is not case insensitive:
SELECT * FROM (SELECT ROW_NUMBER() OVER(order by name) AS rownum, id, name,
address, city, state, zip FROM testlib.mastfile where (name like '%Brooks%'
or id = 0)) AS col WHERE rownum BETWEEN 21 and 40
The above code gives me records 21-40 based on the selection and sort. Here
is how I changed the code to allow for case insensitive searching:
SELECT * FROM (SELECT ROW_NUMBER() OVER(order by name) AS rownum, id, name,
address, city, state, zip FROM testlib.mastfile where (upper(name) like
upper('%Brooks%') or id = 0)) AS col WHERE rownum BETWEEN 21 and 40
I do not receive any results back from the code above. I have testes the
following and it works properly:
SELECT * from testlib.mastfile where upper(name) like upper('%brooks%')
Any idea what I am doing wrong? I am fairly new to sql so I may just be
overlooking the obvious.
TIA
Joel
--
This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/web400.
No virus found in this incoming message.
Checked by AVG -
http://www.avg.com
Version: 8.0.173 / Virus Database: 270.8.2/1735 - Release Date: 20-10-2008
14:52
--
This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/web400.
As an Amazon Associate we earn from qualifying purchases.