Forum Replies Created

Viewing 4 posts - 481 through 485 (of 485 total)

  • RE: linking fields in queries

    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,...

  • RE: Strange behaviour

    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...

  • RE: Multiple table insertion

    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....

  • RE: query analizer

    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...

Viewing 4 posts - 481 through 485 (of 485 total)