|
As far as I recall, nothing has been added to 7.1 that helps here...sothe
following applies from at least v5r4 forward.you'll
Yes, if you want to see any performance improvement in SQL vs. RLA,
need to fetch multiple records. Either into a MODS or an array. Iprefer
array's and IIRC v5 somthing is where IBM added support for fetchinginto
them.'123',
Here's the key: SQL doesn't support the idea of "position to" like RLA
does. For example, with RLA, I can position to a key value (say
then page backward or forward. To do this via SQL requires either twocursor.
cursors (WHERE >= '123', WHERE < '123') or closing reopening the
serahc
With SQL you're better off with using "subset by". The resulting
functionality can be considerably more flexible and powerful (thinkRegEx
for example); but your users may need some time and training to acceptit.
wrote:
HTH,
CHarles
On Tue, Nov 6, 2012 at 9:37 AM, Michael Ryan <michaelrtr@xxxxxxxxx>
program
Hi folks...looking for opinions/ideas here. I'm working with a
thatresult
declares a cursor, then does a FETCH NEXT to iterate through the
setInventory
and fill a subfile. It looks like this:
DECLARE C1 CURSOR FOR
Select * From Inventory
Where...<where and order by clauses>
...
Exec SQL
Fetch Next
From C1
Into :WkInventory;
Where WkInventory is an externally described DS based on the
thefile. The data is then moved from WkInventory to the subfile, and
into asubfile is eventually displayed.
I *think* that performance would improve by FETCHing multiple rows
performingMODS or an array in a data structure, rather than esentially
RLAapproach
with SQL. Recently upgraded to V7R1, so I'm looking for the best
firstat this OS level - I know I can do more than I could do in V5R4. My
needthought is a MODS and specifying a number on the FETCH. But then I
tosubfile,
be concerned about 're-FETCHing' when I run out of rows for my
Iright? Would an array make more sense than a MODS?
I want to use SQL where it makes sense and RLA where it makes sense.
needforward.
to work through this concept so I can use this technique as I go
mailingIdeas, opinions, code samples all welcome. Thanks in advance!
--
This is the RPG programming on the IBM i / System i (RPG400-L)
listlist
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 / System i (RPG400-L) mailing
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.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.