D
DaveSwain
Hello,
our sql server admins installed the SP4 to our sql 2000 database. Now
when we are using access ado to call a stored proc like so it
FAILS...(also this code was in place and working prior to the patch):
EXEC someproc_name @mydate = '12/4/2007', myint=2
however if I take out the variable names like so,
EXEC someproc_name '12/4/2007', 2
then it works...but this won't do as a work-a-round.
and...the proc (with variable names) still runs in SQL 2000 query
analyser, just not from access 2003 ADO.
anyone have a clue what I should start with?
PS, if there is only a SELECT in the stored proc, it will take the
variable names..but if there is an UPDATE OR INSERT IT FAILS
-thanks
our sql server admins installed the SP4 to our sql 2000 database. Now
when we are using access ado to call a stored proc like so it
FAILS...(also this code was in place and working prior to the patch):
EXEC someproc_name @mydate = '12/4/2007', myint=2
however if I take out the variable names like so,
EXEC someproc_name '12/4/2007', 2
then it works...but this won't do as a work-a-round.
and...the proc (with variable names) still runs in SQL 2000 query
analyser, just not from access 2003 ADO.
anyone have a clue what I should start with?
PS, if there is only a SELECT in the stored proc, it will take the
variable names..but if there is an UPDATE OR INSERT IT FAILS
-thanks