473,581 Members | 2,607 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem relating to running Stored Procedures

I hope I can get some help regarding this issue, which has been going
on for a while. I have a desktop user who is having problem running
"Stored Procedures". The DB2 Connect application works fine but when he
runs the stored procedure, he gets the following error message.

"SYSPROC".CSGCS B54 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".CSGCS B54 - Calling the stored procedure.

"SYSPROC".CSGCS B54 - Run completed.

But not others:

SYSPROC".ALRT2S 91 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".ALRT2 S91 - Exception occurred while running:

null

"SYSPROC".ALRT2 S91 - Roll back completed successfully.

"SYSPROC".ALRT2 S91 - Run failed.

The ALRT stored procedures are the ones he is running, do you know why
it's doing this. The user is using the latest version of DB2 v9.

It seems with the null response that DB2 does not know what to do with
the query. Is there some kind of table that has the allowed versions of
software to execute against DB2?

Any help will be greatly appreciated.

Thankx.

Sep 19 '06 #1
4 3974
Here is some more information I could get on this issue, here are
traces for a successful run and an unsuccessful run. Please help me
trace the problem.

Thanks.

com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:runFailed ^Exception
anException = java.lang.NullP ointerException ^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ return(ALRTMS01 ) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ return("SYSPROC ".ALRTMS01) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ return() ^ runIt

2006-09-19 16:03:18.323 ^

and DomainType :

(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.too ls.dev.dc.cm.mo del.ModelUtil:g etCopy^RDBMembe rType aMT =
com.ibm.etools. rdbschema.impl. DB2OS390Charact erStringTypeImp l@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^

*************** ***********end* *************** *************** *************** *************** *************** *************** *************** *************** *************** ***********

I hope I can get some help regarding this issue, which has been going
on for a while. I have a desktop user who is having problem running
"Stored Procedures". The DB2 Connect application works fine but when he
runs the stored procedure, he gets the following error message.

"SYSPROC".CSGCS B54 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".CSGCS B54 - Calling the stored procedure.

"SYSPROC".CSGCS B54 - Run completed.

But not others:

SYSPROC".ALRT2S 91 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".ALRT2 S91 - Exception occurred while running:

null

"SYSPROC".ALRT2 S91 - Roll back completed successfully.

"SYSPROC".ALRT2 S91 - Run failed.

The ALRT stored procedures are the ones he is running, do you know why
it's doing this. The user is using the latest version of DB2 v9.

It seems with the null response that DB2 does not know what to do with
the query. Is there some kind of table that has the allowed versions of
software to execute against DB2?

Any help will be greatly appreciated.

Thankx.
Sep 20 '06 #2
This may be an application problem in the ALRT... stored procedure. It
looks like the retrieval returned a null (column) value that caused a
Java exception when it was processed through Java's string handling
routines. This isn't an uncommon problem when an application programmer
doesn't fully understand (or wasn't shown) the complete table definition.

There are four possible fixes:
1. Change the application code to check for and appropriately handle the
null column value.
2. Change the SQL statement to use a COALESCE (or VALUE) function to
provide a default value when the column contains nulls.
3. Use a try ... catch code block to catch the exception and handle it
there.
4. Scrub the data to assign default values for all rows. If this is the
choice, you need to discover why the original table definition didn't
include the NOT NULL [WITH DEFAULT] clause[s].

Phil Sherman

ni*****@gmail.c om wrote:
Here is some more information I could get on this issue, here are
traces for a successful run and an unsuccessful run. Please help me
trace the problem.

Thanks.

com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:runFailed ^Exception
anException = java.lang.NullP ointerException ^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ return(ALRTMS01 ) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ return("SYSPROC ".ALRTMS01) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ return() ^ runIt

2006-09-19 16:03:18.323 ^

and DomainType :

(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.too ls.dev.dc.cm.mo del.ModelUtil:g etCopy^RDBMembe rType aMT =
com.ibm.etools. rdbschema.impl. DB2OS390Charact erStringTypeImp l@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^

*************** ***********end* *************** *************** *************** *************** *************** *************** *************** *************** *************** ***********

>I hope I can get some help regarding this issue, which has been going
on for a while. I have a desktop user who is having problem running
"Stored Procedures". The DB2 Connect application works fine but when he
runs the stored procedure, he gets the following error message.

"SYSPROC".CSGC SB54 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".CSGC SB54 - Calling the stored procedure.

"SYSPROC".CSGC SB54 - Run completed.

But not others:

SYSPROC".ALRT2 S91 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".ALRT 2S91 - Exception occurred while running:

null

"SYSPROC".ALRT 2S91 - Roll back completed successfully.

"SYSPROC".ALRT 2S91 - Run failed.

The ALRT stored procedures are the ones he is running, do you know why
it's doing this. The user is using the latest version of DB2 v9.

It seems with the null response that DB2 does not know what to do with
the query. Is there some kind of table that has the allowed versions of
software to execute against DB2?

Any help will be greatly appreciated.

Thankx.
Sep 21 '06 #3
Thanks for your response Phil, I will try this and let you know the
results.

Nishi

Phil Sherman wrote:
This may be an application problem in the ALRT... stored procedure. It
looks like the retrieval returned a null (column) value that caused a
Java exception when it was processed through Java's string handling
routines. This isn't an uncommon problem when an application programmer
doesn't fully understand (or wasn't shown) the complete table definition.

There are four possible fixes:
1. Change the application code to check for and appropriately handle the
null column value.
2. Change the SQL statement to use a COALESCE (or VALUE) function to
provide a default value when the column contains nulls.
3. Use a try ... catch code block to catch the exception and handle it
there.
4. Scrub the data to assign default values for all rows. If this is the
choice, you need to discover why the original table definition didn't
include the NOT NULL [WITH DEFAULT] clause[s].

Phil Sherman

ni*****@gmail.c om wrote:
Here is some more information I could get on this issue, here are
traces for a successful run and an unsuccessful run. Please help me
trace the problem.

Thanks.

com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:runFailed ^Exception
anException = java.lang.NullP ointerException ^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ return(ALRTMS01 ) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ return("SYSPROC ".ALRTMS01) ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:

null^^ ^ return() ^ runIt

2006-09-19 16:03:18.323 ^

and DomainType :

(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.too ls.dev.dc.cm.mo del.ModelUtil:g etCopy^RDBMembe rType aMT =
com.ibm.etools. rdbschema.impl. DB2OS390Charact erStringTypeImp l@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^

*************** ***********end* *************** *************** *************** *************** *************** *************** *************** *************** *************** ***********

I hope I can get some help regarding this issue, which has been going
on for a while. I have a desktop user who is having problem running
"Stored Procedures". The DB2 Connect application works fine but when he
runs the stored procedure, he gets the following error message.

"SYSPROC".CSGCS B54 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".CSGCS B54 - Calling the stored procedure.

"SYSPROC".CSGCS B54 - Run completed.

But not others:

SYSPROC".ALRT2S 91 - Run started.

Data returned in result sets is limited to the first 100 rows.

Data returned in result set columns is limited to the first 20 bytes or
characters.

"SYSPROC".ALRT2 S91 - Exception occurred while running:

null

"SYSPROC".ALRT2 S91 - Roll back completed successfully.

"SYSPROC".ALRT2 S91 - Run failed.

The ALRT stored procedures are the ones he is running, do you know why
it's doing this. The user is using the latest version of DB2 v9.

It seems with the null response that DB2 does not know what to do with
the query. Is there some kind of table that has the allowed versions of
software to execute against DB2?

Any help will be greatly appreciated.

Thankx.
Sep 22 '06 #4
Do you think it might be the way the stored procedure is defined that
is causing this issue. I have a stored procedure that works in DB2
Connect V 8.1.9; e.g. ALRTMSD3, and 1 that does not; e.g. ALRTMSD2? Do
let me know if anyone can find any solution to this -

CREATE PROCEDURE SYSPROC.ALRTMSD 2 (
IN CHAR(8) FOR SBCS DATA CCSID EBCDIC
, OUT VARCHAR(31980) FOR SBCS DATA CCSID EBCDIC
, OUT CHAR(177) FOR SBCS DATA CCSID EBCDIC
)
COLLID SDSN3CLST
EXTERNAL LANGUAGE COBOL
DYNAMIC RESULT SET 0
NOT DETERMINISTIC
FENCED
CALLED ON NULL INPUT
PARAMETER STYLE DB2SQL
MODIFIES SQL DATA
NO DBINFO
STAY RESIDENT NO
ASUTIME NO LIMIT
WLM ENVIRONMENT DSN3WLM1
PROGRAM TYPE MAIN
SECURITY DB2
COMMIT ON RETURN NO
;
GRANT EXECUTE ON PROCEDURE SYSPROC.ALRTMSD 2 TO PUBLIC;

CREATE PROCEDURE SYSPROC.ALRTMSD 3 (
IN INPUT_PARM1 CHAR(2) FOR SBCS DATA CCSID EBCDIC
, OUT OUTPUT_PARM1 VARCHAR(1250) FOR SBCS DATA CCSID EBCDIC
, OUT OUTPUT_PARM2 CHAR(177) FOR SBCS DATA CCSID EBCDIC
, OUT OUTPUT_PARM3 VARCHAR(240) FOR SBCS DATA CCSID EBCDIC
)
COLLID SDSN3CLST
EXTERNAL LANGUAGE COBOL
DYNAMIC RESULT SET 0
NOT DETERMINISTIC
FENCED
CALLED ON NULL INPUT
PARAMETER STYLE DB2SQL
MODIFIES SQL DATA
NO DBINFO
STAY RESIDENT NO
ASUTIME LIMIT 98160
WLM ENVIRONMENT DSN3WLM
PROGRAM TYPE MAIN
SECURITY DB2
COMMIT ON RETURN NO
;
GRANT EXECUTE ON PROCEDURE SYSPROC.ALRTMSD 3 TO PUBLIC;

Thanks,

Nishi

ni*****@gmail.c om wrote:
Thanks for your response Phil, I will try this and let you know the
results.

Nishi

Phil Sherman wrote:
This may be an application problem in the ALRT... stored procedure. It
looks like the retrieval returned a null (column) value that caused a
Java exception when it was processed through Java's string handling
routines. This isn't an uncommon problem when an application programmer
doesn't fully understand (or wasn't shown) the complete table definition.

There are four possible fixes:
1. Change the application code to check for and appropriately handle the
null column value.
2. Change the SQL statement to use a COALESCE (or VALUE) function to
provide a default value when the column contains nulls.
3. Use a try ... catch code block to catch the exception and handle it
there.
4. Scrub the data to assign default values for all rows. If this is the
choice, you need to discover why the original table definition didn't
include the NOT NULL [WITH DEFAULT] clause[s].

Phil Sherman

ni*****@gmail.c om wrote:
Here is some more information I could get on this issue, here are
traces for a successful run and an unsuccessful run. Please help me
trace the problem.
>
Thanks.
>
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:runFailed ^Exception
anException = java.lang.NullP ointerException ^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. Utility:toUpper Case^String aString =
ALRTMS01^^ ^ return(ALRTMS01 ) ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.svc.m akers.GenSP390R unner:getFullQu alifyName^RLRou tine
rtn = ALRTMS01^^ ^ return("SYSPROC ".ALRTMS01) ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:
>
null^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.too ls.dev.dc.util. message.DCMsg:D CMsg^String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTM S01 - Exception occurred while running:
>
null^^ ^ return() ^ runIt
>
2006-09-19 16:03:18.323 ^
>
and DomainType :
>
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13
>
2006-09-19 16:03:12.714 ^
com.ibm.db2.too ls.dev.dc.cm.mo del.ModelUtil:g etCopy^RDBMembe rType aMT =
com.ibm.etools. rdbschema.impl. DB2OS390Charact erStringTypeImp l@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueI nstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassN ame: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetBy teSize: UNDEFINED, encodingScheme: null)^^ ^
>
*************** ***********end* *************** *************** *************** *************** *************** *************** *************** *************** *************** ***********
>
>
>
>
>I hope I can get some help regarding this issue, which has been going
>on for a while. I have a desktop user who is having problem running
>"Stored Procedures". The DB2 Connect application works fine but when he
>runs the stored procedure, he gets the following error message.
>>
>"SYSPROC".CSGC SB54 - Run started.
>>
>Data returned in result sets is limited to the first 100 rows.
>>
>Data returned in result set columns is limited to the first 20 bytes or
>characters.
>>
>"SYSPROC".CSGC SB54 - Calling the stored procedure.
>>
>"SYSPROC".CSGC SB54 - Run completed.
>>
>But not others:
>>
>SYSPROC".ALRT2 S91 - Run started.
>>
>Data returned in result sets is limited to the first 100 rows.
>>
>Data returned in result set columns is limited to the first 20 bytes or
>characters.
>>
>"SYSPROC".ALRT 2S91 - Exception occurred while running:
>>
>null
>>
>"SYSPROC".ALRT 2S91 - Roll back completed successfully.
>>
>"SYSPROC".ALRT 2S91 - Run failed.
>>
>The ALRT stored procedures are the ones he is running, do you know why
>it's doing this. The user is using the latest version of DB2 v9.
>>
>It seems with the null response that DB2 does not know what to do with
>the query. Is there some kind of table that has the allowed versions of
>software to execute against DB2?
>>
>Any help will be greatly appreciated.
>>
>Thankx.
>
Sep 26 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4232
by: Ryan | last post by:
I have two similar stored procedures which I'm running. One runs and one doesn't. I can run both with no problems in SQL Enterprise (7.0 standard) and have checked the permissions and am happy with them. Whilst the statements in each sp are different, I'm calling them in exactly the same way (using Delphi 5 Windows 2000). I don't get any...
2
7317
by: Yves Touze | last post by:
Hi All, I'm trying to migrate from SQL Server 7.0 to SQL Server 2000. I've got some ASP page which call VB components that retrieve shaped recordsets from SQL Server using the MSDATASHAPE provider. Precisely, here is the code i have Dim Cmdobj As New ADODB.Command Cmdobj.ActiveConnection = oconn Cmdobj.CommandType = adCmdStoredProc
6
4509
by: Mike J | last post by:
I have several stored procedures that run fine from my SQL Server database (via the exec command.), though when I call these procedures from my web application, they do not complete. I have other procedures that in fact do run fine through my web application though, so I do not believe its a front-end problem. The procedures only take about...
4
4382
by: Nyul | last post by:
Gurus, I have a verb big problem which I'm unable to explain. We have a DB2 V6.1.0 on AIX 4.3 I want to make a C stored procedure which at the end will be called by a PHP script. The development server was an UDB V6.1.0 on W2K. Everything went well. I was able to call the stored proc from C and from Delphi.
2
9215
by: Kent Lewandowski | last post by:
hi all, Recently I wrote some stored procedures using java jdbc code (admittedly my first stab) and then tried to implement the same within java packages (for code reuse). I encountered problems doing this. I wanted to implemented a generic "Helper" class like this: /** * Helper
2
4272
by: Rhino | last post by:
I am getting an sqlcode of -927 when I execute SQL within a COBOL stored procedure in DB2 OS/390 Version 6 on OS/390. I have looked at the error message for that condition and tried everything I could think of to resolve the problem but nothing works. The stored proc is running in the DB2 Stored Procedures Address Space and both the client...
5
3465
by: Tim Marshall | last post by:
I was following the thread "Re: Access Treeview - Is it Safe Yet?" with interest and on reading the post describing Lauren Quantrell's SmartTree, I've run into something I don't understand: Stored Procedures. I thought stored pricedures were an Oracle/MS SQL Server thing and don't know how they work with Access Jet. I've looked at some of...
1
1530
by: sasachi sachi sachi | last post by:
Hi there, I have a data manipulation process written in a Nested Stored procedure that have four levels deeper. When I run these individual procedures individually they all seems to be fine. Where as when I run them all together as Nested proces (calling one in another as sub-procedures) Log file is growing pretty bad like 25 to 30GB.. and...
7
3440
by: Dabbler | last post by:
I'm using an ObjectDataSource with a stored procedure and am getting the following error when trying to update (ExecuteNonQuery): System.Data.SqlClient.SqlException: Procedure or Function 'UpdateRegistrant' expects parameter '@EMail', which was not supplied. The field value was null in the database and not changed in the FormView so is...
0
7868
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7792
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8304
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6553
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5364
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3805
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
2301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1403
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.