× 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.



Hi Paul

Sql Static means the structure of your sql do not change in your program
and it is hardcoded.
.
Usually you use Dynamic sql when you need to build the sql statement in a
string, when the sql statement is built on the fly.
dynamic SQL refers to SQL commands that are interpreted at runtime, your
program doesn't know ahead of time how your sql
going to be, it needs to be built into a variable then execute this
variable as an SQL statement, the sql statement is dynamic
in nature and can be changed at runtime based on input parameters, it
require more resource at run time since it needs
to prepare the statement, interpreted and then executed.

let's say for example you have this situation
Select;
When UpdByDept;
Stmt = SelectStmt + 'Dept = ?' + ForUpdate;
CompareValue = DeptID;
When UpdByJob;
Stmt = SelectStmt + 'Job = ?' + ForUpdate;
CompareValue = Pos;
When UpdByDate;
Stmt = SelectStmt + 'HireDate < ?' + ForUpdate;
CompareValue = StartDate;
EndSl;

As you can see the select statement is built based on different criteria
which change the structure of your sql in your program,
this particular example is using parameters marker that's when you need to
use the sintax "USING: parm1 :parm2 :parm3 etc. etc.

with a dynamic sql you must use Prepare and you could use Execute or
Execute Immediate.




On Wed, May 11, 2016 at 1:56 PM, <dlclark@xxxxxxxxxxxxxxxx> wrote:

"RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx> wrote on 05/11/2016 01:39:55
PM:
I assume you had a PMR open? The answer they came back with was to use
dynamic SQL?

There was no PMR. We were having performance issues and we hired
IBM to, among other things, take a look at our SQL usage and to advise us
the correct/best way to use SQL. One of the things that came out in the
process was that our environment has nearly 600 "local" data libraries
with the same tables in every library plus we have a "shared" data
library. Library lists will have one "local" data library and the one
"shared" data library in them. "Local" users don't switch library lists
for their interactive sessions but some of the jobs that run on their
behalf have to switch library lists to process all of the files. The
resulting IBM recommendation to us was to use static SQL for the "shared"
data library but to use dynamic SQL for the "local" data libraries. We
also contracted for SQL training and the trainer agreed regarding our
situation with the same table names in multiple data libraries.

Sincerely,

Dave Clark
int.ext: 91078
direct: (937) 531-6378
home: (937) 751-3300

Winsupply Group Services
3110 Kettering Boulevard
Dayton, Ohio 45439 USA
(937) 294-5331





*********************************************************************************************
This email message and any attachments is for use only by the named
addressee(s) and may contain confidential, privileged and/or proprietary
information. If you have received this message in error, please
immediately notify the sender and delete and destroy the message and all
copies. All unauthorized direct or indirect use or disclosure of this
message is strictly prohibited. No right to confidentiality or privilege
is waived or lost by any error in transmission.

*********************************************************************************************
--
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.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

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.