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



On Mon, Oct 19, 2015 at 11:13 AM, Mike Jones <mike.jones.sysdev@xxxxxxxxx>
wrote:

date: Mon, 19 Oct 2015 17:08:13 +0000
from: Justin Dearing <zippy1981@xxxxxxxxx>
subject: Re: GENERATE_SQL(): Was: Learning SEU, Source members . . .

On Mon, Oct 19, 2015 at 12:33 PM Charles Wilt <charles.wilt@xxxxxxxxx>
wrote:



So, that least me to a more generic version of my last question. If a SQL
statement fails, whats the best way to associate that with particular rows
in the joblob? Capturing timestamps before the message, or can i get the
rowid somehow?

Here is a better way to get your error feedback that will likely work
well, by creating a table UDF wrapper to run your SQL commands:
1) Create an SQL Table UDF, named something like RUN_SQL, that accepts a
long VARCHAR input parameter SQL_STATEMENT. The Table UDF should return
columns SQL_CODE, SQL_STATE, and MESSAGE_TEXT as output. Inside the SQL
Table UDF, feed input parameter SQL_STATEMENT to EXECUTE IMMEDIATE. After
the EXECUTE IMMEDIATE, run GET DIAGNOSTICS to get the SQL_CODE, SQL_STATE,
and MESSAGE_TEXT resulting from the EXECUTE IMMEDIATE. Perform "return
values ( SQL_CODE, SQL_STATE, MESSAGE_TEXT )" to return the results to the
caller.
2) When you want to generate SQL, pass your "CALL QSYS2.GENERATE_SQL..."
string to the RUN_SQL table UDF in the form of a table UDF query, it will
run your SQL command, and return the results, thereby negating the need to
look at the job log in most cases.

Table function RUN_SQL would be able to handle most SQL commands, but not
a SELECT query.

Mike


P.S. I do a lot of processing like that, but not executing a CALL command
to stored procedures. On second thought, you may have difficulty forming a
string to perform a CALL to a procedure that uses other than VARCHAR
parameters. If that is the case for GENERATE_SQL, make yourself a specific
SQL Table UDF designed solely as a wrapper for procedure GENERATE_SQL.

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.