472,952 Members | 1,873 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,952 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 3900
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: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...

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.