By the way. I've read the i7.2 alters the WRKQRY system to use the new
query engine (SQE). So, if your query didn't specify a sort order, going
to 7.2 could potentially change the sort order you get.
From: darren@xxxxxxxxx
To: "RPG programming on the IBM i \(AS/400 and iSeries\)"
<rpg400-l@xxxxxxxxxxxx>
Date: 04/30/2015 01:32 PM
Subject: Re: SQL weirdness
Sent by: "RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx>
Never assume the order you'll get with SQL. You must always specify it, if
its important to you. SQL can pick different indexes and uses behind the
scene "magic" that can alter the order of the records you get, if you don't
tell it what you want.
If you really want relative record number sorting, you can use select *
from file ORDER BY RRN(file)
From: Steve Jones <sjones@xxxxxxxxxxxxxxx>
To: rpg400-l@xxxxxxxxxxxx
Date: 04/30/2015 01:27 PM
Subject: SQL weirdness
Sent by: "RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx>
We moved to a new ISeries over the weekend. Old box running V5R4 - new box
running V7R1. When I do a strsql & then run the sql statement below on the
NEW BOX - I get the LAST 7 records in the file. If I run the same
statement on the OLD BOX - I get the first 7 records.
What is causing the difference?
SELECT CDTECA FROM CALNDRL0 WHERE CDTECA >= 1150430 AND CALNCA =
'MAPICS' FETCH FIRST 7 ROWS ONLY
--
Steve Jones
H-P Products, Inc
330-871-2054
--
NOTE: The information in this email is confidential and may be legally
privileged. If you are not the intended recipient, you must not read, use
or disseminate the information; please advise the sender immediately by
reply email and delete this message and any attachments without retaining a
copy. Although this email and any attachments are believed to be free of
any virus or other defect that may affect any computer system into which it
is received and opened, it is the responsibility of the recipient to ensure
that it is virus free and no responsibility is accepted by H-P Products,
Inc. for any loss or damage arising in any way from its use.
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/rpg400-l.
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.