Viewing 15 posts - 18,811 through 18,825 (of 18,923 total)
I found a workaround by redoing the join but I still don't understand what is causing the problem in the first update query I posted.
this works but I double the...
November 30, 2004 at 2:49 pm
Happy to help... how do you include the adovbs.inc file exactly? I haven't worked for a while in asp but I could surely use that info eventually...
November 30, 2004 at 12:26 pm
The problem comes from ASP :
every Constants must be converted to their respective value.
ex : cmdStoredProc2.CommandType = adcmdStoredProc
== : cmdStoredProc2.CommandType = 4
this should solve your problem. ...
November 30, 2004 at 11:59 am
This seems to be what you are looking for.
http://www.sqlservercentral.com/scripts/contributions/1212.asp
November 30, 2004 at 11:14 am
forget that post.. that one is for foreign keys 🙁
November 30, 2004 at 11:09 am
You can try this one for starters (may need to modify it a bit)
http://www.sqlservercentral.com/scripts/contributions/445.asp
November 30, 2004 at 11:07 am
can u send the code where the line accurs.. this doesn't help me much to pinpoint the problem.
November 30, 2004 at 11:04 am
I've heard of tree representation but never of diagrams.
But this can get you started :
exec sp_depends 'SP_name'
November 30, 2004 at 11:00 am
It's on the same line as I thaught. I would try my first solution and if it doesn't work then I would suggest you post the data definition of...
November 30, 2004 at 10:49 am
I don't think an if is the answer here (because he seems to want to join on a value from the main view.. so it doesn't seem to be a...
November 30, 2004 at 9:12 am
I don't think it's possible. I have come across some similar query with a udf that wasn't allowed by MS design (and for good reason).
I think you may...
November 30, 2004 at 8:32 am
I agree but I was referring to something I saw on this board... I would not use a UDF in this case either :-).
November 30, 2004 at 6:36 am
Thanx for the performance pointer frank. But can you explain to me why your version is faster than the one I posted?
November 30, 2004 at 6:18 am
Update YourTable set f1 = 'UserInput' ... where PkCol1 = ? and PkCol2 = ? and PkCol3 = ? and PkCol4 = ?
The only thing I can think of for...
November 29, 2004 at 12:53 pm
Please don't use cursors when you can use a set based solution. This will run so much faster on the production system :
Update P set P.cStock = P.CStock -...
November 29, 2004 at 12:48 pm
Viewing 15 posts - 18,811 through 18,825 (of 18,923 total)