Viewing 15 posts - 14,446 through 14,460 (of 18,923 total)
Yup you're really looking for a function here... however, it might even be better to just use a derived table in this case. What's the code of the proc?
Also,...
August 12, 2005 at 11:26 am
Hard to say what's heppenning I'd have to be there cause I never saw that either.
August 12, 2005 at 11:21 am
Well like I said I would drop the function part of it and just put the code function in the page since there shouldn't be much else on that page...
August 12, 2005 at 10:24 am
Tell them to use the freaking wizards, it types them by default and it saves 'em typing time
.
August 12, 2005 at 10:12 am
Never been bitten by this one... and I'll keep it that way
.
August 12, 2005 at 9:59 am
the sp resides on sql server
asp code resides on another machine (at least another process)
asp uses this code to call the code on the server and execute it.
August 12, 2005 at 9:58 am
This is the most important part of my request : SAMPLE DATA/RESULTS.
August 12, 2005 at 9:36 am
Something like this?
Select YourColumns from dbo.tblOrders O inner join dbo.tblOrderPayments OP on O.OrderID = OP.OrderID
where ?.ProductCode = @SomeValue and OP.PaymentSuccess = 1
August 12, 2005 at 9:30 am
Set MyParam = New ADODB.Parameter
starts with a fresh parameter object
MyParam.Name = "@SRhospitalCanvass"
sets the name, mandatory
MyParam.Value = SRhospitalCanvass
sets the value, mandatory
MyParam.Size = 10
sets the size of the...
August 12, 2005 at 9:28 am
You can't filter squat without a where condition.
As for the 5th row, that's another problem altogether. What is the primary key of the table?
August 12, 2005 at 9:23 am
Read the link and follow the instructions. I'm ready to help you but you have to give me the info I need (SAMPLE DATA/RESULTS).
August 12, 2005 at 9:22 am
"Am I 3 minutes slower than Remi
"
That's almost a compliement to you
.
August 12, 2005 at 9:18 am
Viewing 15 posts - 14,446 through 14,460 (of 18,923 total)