473,407 Members | 2,315 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

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".CSGCSB54 - 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".CSGCSB54 - Calling the stored procedure.

"SYSPROC".CSGCSB54 - Run completed.

But not others:

SYSPROC".ALRT2S91 - 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".ALRT2S91 - Exception occurred while running:

null

"SYSPROC".ALRT2S91 - Roll back completed successfully.

"SYSPROC".ALRT2S91 - 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 3949
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.tools.dev.dc.svc.makers.GenSP390Runner :runFailed^Exception
anException = java.lang.NullPointerException^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.Utility:toUpperCase^ String aString =
ALRTMS01^^ ^ entry ^ runIt

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

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ return("SYSPROC".ALRTMS01) ^ runIt

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

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.message.DCMsg:DCMsg^ String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTMS01 - 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, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.tools.dev.dc.cm.model.ModelUtil:getCop y^RDBMemberType aMT =
com.ibm.etools.rdbschema.impl.DB2OS390CharacterStr ingTypeImpl@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: 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".CSGCSB54 - 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".CSGCSB54 - Calling the stored procedure.

"SYSPROC".CSGCSB54 - Run completed.

But not others:

SYSPROC".ALRT2S91 - 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".ALRT2S91 - Exception occurred while running:

null

"SYSPROC".ALRT2S91 - Roll back completed successfully.

"SYSPROC".ALRT2S91 - 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.com 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.tools.dev.dc.svc.makers.GenSP390Runner :runFailed^Exception
anException = java.lang.NullPointerException^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.Utility:toUpperCase^ String aString =
ALRTMS01^^ ^ entry ^ runIt

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

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ return("SYSPROC".ALRTMS01) ^ runIt

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

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.message.DCMsg:DCMsg^ String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTMS01 - 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, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.tools.dev.dc.cm.model.ModelUtil:getCop y^RDBMemberType aMT =
com.ibm.etools.rdbschema.impl.DB2OS390CharacterStr ingTypeImpl@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: 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".CSGCSB54 - 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".CSGCSB54 - Calling the stored procedure.

"SYSPROC".CSGCSB54 - Run completed.

But not others:

SYSPROC".ALRT2S91 - 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".ALRT2S91 - Exception occurred while running:

null

"SYSPROC".ALRT2S91 - Roll back completed successfully.

"SYSPROC".ALRT2S91 - 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.com 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.tools.dev.dc.svc.makers.GenSP390Runner :runFailed^Exception
anException = java.lang.NullPointerException^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.Utility:toUpperCase^ String aString =
ALRTMS01^^ ^ entry ^ runIt

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

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ return("SYSPROC".ALRTMS01) ^ runIt

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

null^^ ^ entry ^ runIt

2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.message.DCMsg:DCMsg^ String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTMS01 - 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, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13

2006-09-19 16:03:12.714 ^
com.ibm.db2.tools.dev.dc.cm.model.ModelUtil:getCop y^RDBMemberType aMT =
com.ibm.etools.rdbschema.impl.DB2OS390CharacterStr ingTypeImpl@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: 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".CSGCSB54 - 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".CSGCSB54 - Calling the stored procedure.

"SYSPROC".CSGCSB54 - Run completed.

But not others:

SYSPROC".ALRT2S91 - 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".ALRT2S91 - Exception occurred while running:

null

"SYSPROC".ALRT2S91 - Roll back completed successfully.

"SYSPROC".ALRT2S91 - 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.ALRTMSD2 (
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.ALRTMSD2 TO PUBLIC;

CREATE PROCEDURE SYSPROC.ALRTMSD3 (
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.ALRTMSD3 TO PUBLIC;

Thanks,

Nishi

ni*****@gmail.com 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.com 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.tools.dev.dc.svc.makers.GenSP390Runner :runFailed^Exception
anException = java.lang.NullPointerException^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.Utility:toUpperCase^ String aString =
ALRTMS01^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.Utility:toUpperCase^ String aString =
ALRTMS01^^ ^ return(ALRTMS01) ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.svc.makers.GenSP390Runner :getFullQualifyName^RLRoutine
rtn = ALRTMS01^^ ^ return("SYSPROC".ALRTMS01) ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.message.DCMsg:DCMsg^ String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTMS01 - Exception occurred while running:
>
null^^ ^ entry ^ runIt
>
2006-09-19 16:03:18.323 ^
com.ibm.db2.tools.dev.dc.util.message.DCMsg:DCMsg^ String anActionID =
RUN^ Object anObject = ALRTMS01^ int aStatusFlag = 25^ String aMsg =
"SYSPROC".ALRTMS01 - 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, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: UNDEFINED, encodingScheme: null)^^ ^ entry ^
Thread-13
>
2006-09-19 16:03:12.714 ^
com.ibm.db2.tools.dev.dc.cm.model.ModelUtil:getCop y^RDBMemberType aMT =
com.ibm.etools.rdbschema.impl.DB2OS390CharacterStr ingTypeImpl@33838e8
(externalName: null, name: null, defaultValue: null, jdbcEnumType:
null) (domainType: DB2UDBOS390_V7, requiredUniqueInstance: null,
renderedString: null, typeEnum: CHARACTER, formatterClassName: null,
keyable: true, whereable: true) (characterSet: 800, length: 32)
(characterSetByteSize: 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".CSGCSB54 - 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".CSGCSB54 - Calling the stored procedure.
>>
>"SYSPROC".CSGCSB54 - Run completed.
>>
>But not others:
>>
>SYSPROC".ALRT2S91 - 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".ALRT2S91 - Exception occurred while running:
>>
>null
>>
>"SYSPROC".ALRT2S91 - Roll back completed successfully.
>>
>"SYSPROC".ALRT2S91 - 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
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...
2
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...
6
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...
4
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...
2
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...
2
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...
5
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...
1
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....
7
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.