Stored Procedure in Java
With IDS 9.x, it seems that stored procedures can be written in Java also. Is there any performance implication of writing stored procedures in Java. Is the feature support equivalent to that of...
View ArticleFetch stored procedure definition in Java
Is it possible to fetch deployed stored procedure's definition in Java. ******************************************************************************* To post a response via email (IIUG members only):...
View ArticleRe: Stored Procedure in Java
Gurpreet: Stored procedures written in Java or C will tend to outperform SPL procedures when there is significant calculation involved. Prior to v11.70 Java procedures were preferred to procedures...
View ArticleRe: Fetch stored procedure definition in Java
Not sure what your question is? Art Art S. Kagel, Principal Consultant ASK Database Management Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own...
View ArticleRe: Fetch stored procedure definition in Java
I suspect, you have an existing old instance and want to get the source for the java SPL. Correct ? Since Java deployment is through jar files, you have to search for the deployed jar files. If you...
View ArticleRe: Fetch stored procedure definition in Java
SELECT T1.procid, data FROM sysprocedures AS T1, sysprocbody AS T2 WHERE procname = 'test_proc' AND T2.procid = T1.procid AND datakey = 'T' ORDER BY T1.procid, T2.seqno Regards, Doug Lawry...
View ArticleIIUG e-mail problem
I just want to confirm. I had a problem with e-mail from the forum not getting to my Inbox. IIUG checked for me, and the e-mails were sent to me, but bounced. I had my Outlook Admins look at this, and...
View ArticleRe: IIUG e-mail problem
You can look at the forum's content for yesterday and today online on the IIUG site or on Google Groups. Art Art S. Kagel, Principal Consultant ASK Database Management Blog:...
View ArticleRE: IIUG e-mail problem
Off course ........ blonde moment (BLUSH) :-o Thanks Art > -----Original Message----- > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of > Art Kagel > Sent: Tuesday, 28...
View ArticlePlanning a new Installation
Hello Everybody, i want to learn how to set up a new IDS platform based on a business needs, there are many articles especially on the IBM developersworks site, but i miss some informations (what kind...
View ArticleRe: Planning a new Installation
Let's start with the business needs. Can you elaborate? Sent from my iPad > On Jan 28, 2014, at 1:54 PM, "SMITH JOHN"<daylight@webmails.com> wrote: > > Hello Everybody, > > i want...
View ArticleRe: Planning a new Installation
Hi, there are multiple things to consider. These are e.g.: - number of (concurrent/total) users - estimated size of the planned databases - layout of the databases (how many tables, how big) - type of...
View ArticleRe: Problmes using ontape with an IBM TS2900 c....
What is TAPESIZE set to in your ONCONFIG file? You should set it to zero (0) meaning that ontape should detect end-of-tape and just keep writing until it finds the end or runs out of data. Art Art S....
View Articleraw table and light appends
11.50.FC8 AIX I am loading up several large raw tables (they all contain one part blob column) using insert into raw_table select * from table and wondering if there is a way other than using HPL to...
View ArticleRe: Problmes using ontape with an IBM TS2900 chang
The TAPEDEV section in the onconfig is as follow: TAPEDEV /dev/IBMTape0 TAPEBLK 512 TAPESIZE 0 We have played with the TAPEBLK from 512 to 4096 to no avail....
View ArticleRe: Problmes using ontape with an IBM TS2900 chang
Hmm, errno = 5 is I/O error, comes from kernel/device driver. Can you write to tape with tar/cpio up to the end? Marcus Haarmann ----- Ursprüngliche Mail ----- Von: "JAVIER...
View Articlebigint/bigserial support
Hi, Folks, Our CSDK is, [fqu@frederic bin]$ check_version csdk Currently installed version: 3.70.FC7DE Previous latest version: 3.70.FC7 You have installed a newer version of ClientSDK over an older...
View ArticleRe: bigint/bigserial support
Our IDS11.50 FC8 server has no problem with bigint/bigserial, but we have little trouble to use it with C++ code at client side. Seems our current CSDK library does not support it. Just want to get...
View ArticleRe: bigint/bigserial support
Yes, bigint and bigserial were introduced with the engine version 11.50.xC1 release of the engine and supported by the corresponding release of CSDK v3.50.xC1. Art Art S. Kagel, Principal Consultant...
View ArticleRe: bigint/bigserial support
bigint & bigserial are supported by the CSDK the type is 'bigint': bigint myvar; I use this in several of the utilities in utils2_ak in ESQL/C with no problems. Art Art S. Kagel, Principal...
View Article