Viewing 4 posts - 481 through 485 (of 485 total)
Sounds like a subquery...
Something like
SELECT <some fields>
FROM <some tables> as st1
JOIN (SELECT <some fields>
FROM <some other tables>) AS st2 ON st2.<field> = st1.<field>
Now,...
October 20, 2003 at 9:36 am
5409045121009 and whoteegan:
Thank you for the replies.
Raiserror in sproc #3 is handled correctly. No results are returned to the application, and the error message is displayed where expected.
whoteegan: Application not...
October 6, 2003 at 5:53 am
Sounds like a index problem, as in lack of useful indices. You don't mention any in your post.
Also, I'm not sure, but it appears that ExclusionList might not be normalized....
August 6, 2003 at 7:08 am
Not enough information to make a meaningful diagnosis: How do you know your query should execute faster? A 'simple' select statement on a 50-million row table with no indexes could...
August 6, 2003 at 6:45 am
Viewing 4 posts - 481 through 485 (of 485 total)