Viewing 4 posts - 1 through 4 (of 4 total)
Thanks!
That was a typo.
Yes, that was an assumption. Since developers normally face this when thier default database setting is set to something other that the one they want...
July 22, 2010 at 3:00 pm
Have the below option in the begining of the script, i.e before calling the SP. This defaults the the provided database name & you do not have to give...
July 22, 2010 at 2:29 pm
Try this below statement.
Please note that there is NO WHERE clause; this will give you all the combination.
Insert into clientVendor
select cientId, vendorID
from vendor v
, client
July 22, 2010 at 2:20 pm
Any luck on converting table variable to temp table?
Here are the other action you can try.
* Recompile procedure (Oh yeah, sometimes this works magic.)
* Gather statistics on the tables included...
July 22, 2010 at 1:05 pm
Viewing 4 posts - 1 through 4 (of 4 total)