Viewing 6 posts - 481 through 487 (of 487 total)
Hi all,
Thanks for the input.
Application roles: Don't want to do this, we are aiming for *really* thin clients, all business rules (including security) on back-end. Also, from what I have...
October 23, 2003 at 6:29 am
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
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 6 posts - 481 through 487 (of 487 total)