× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Doug,

Repeat after me....

"If I'm using an SQL cursor, I'm probably wrong."

SQL is designed for set at a time processing. By using a cursor you're cutting of a leg and expecting
it to run fast. It's not going to happen.

Sometimes, you have to use a cursor...most of the time, RPG programmers use one when they shouldn't
because record at a time processing is what they are used to.


What are you doing with the extracted data?

Putting it into another file?
--use the "INSERT INTO <...> SELECT <...>" form of the insert statement.

Displaying on screen or a report?
--ok cursor's (probably) needed here, but use a multi-row fetch if you want SQL to perform better than
RPG native I/O.



HTH,
Charles


-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Doug Palme
Sent: Tuesday, July 31, 2007 3:13 PM
To: 'RPG programming on the AS400 / iSeries'
Subject: Embedded SQL question

I have not worked with embedded sql in a looooong time but I
have a project that will afford me an opportunity to work
with it again.



I have two physical files that I need to extract some data
from mainly customer number and name but it is based upon
data that is in the second PF.



Here is the way I have the select statement defined:



*---> Prepare SQL Statement for Select

C/EXEC SQL

C+ DECLARE C1 CURSOR FOR

C+ SELECT SLACCT, CCUSNR, CCUSNM, CSTATE, CSTMTL

C+ FROM SLSTRNL5, CORCUSTM

C+ WHERE CSTATE='MN' AND

C+ SLACCT = CCUSNR AND

C+ CSTMTL = :ZTYPE

C/END-EXEC



The only pieces of information I really need is the CCUSNR
and the CCUSNM fields, the rest of them are strictly present
for testing the records...



Is there an easy way to fetch those two fields into a work
file I have without having to include the other fields?







**************************************************************
**************
This transmission may contain information that is privileged,
Confidential and/or exempt from disclosure under applicable law.
If you are not the intended recipient, you are hereby
notified that any disclosure, copying, distribution, or use
of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. If you received this
transmission in error, please immediately contact the sender
and destroy the material in its entirety, whether in
electronic or hard copy format. Thank you.
**************************************************************
**************
--
This is the RPG programming on the AS400 / 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 e-mail transmission contains information that is intended to be confidential and privileged. If you receive this e-mail and you are not a named addressee you are hereby notified that you are not authorized to read, print, retain, copy or disseminate this communication without the consent of the sender and that doing so is prohibited and may be unlawful. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please delete and otherwise erase it and any attachments from your computer system. Your assistance in correcting this error is appreciated.


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.