Viewing 4 posts - 16 through 19 (of 19 total)
on your parameters, you're using Cstr() - try Cdate() function instead, since your proc is looking for DateTime parameters
September 29, 2006 at 1:44 pm
what is the exact error message?
September 29, 2006 at 11:12 am
KC
The first thing to check for is to make sure that in your stored procedure you place at the top (after your parameters) SET NOCOUNT ON. That may be the...
September 29, 2006 at 7:38 am
Try this:
create procedure dbo.myproc
as
select distinct o.odid, r.rcid, r.rqty, r.date, netQty
from receive r inner join order12 o on o.odid = r.odid
where o.partid = (selectpartid from part where [desc]= '+y+') and r.netQty...
September 28, 2006 at 2:26 pm
Viewing 4 posts - 16 through 19 (of 19 total)