Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: WHERE IN(sub-query) vs. INNER JOIN

    Hey Jason,

    I don't remember all of the specific details, but my understanding is that you should always use INNER JOIN over WHERE IN(subquery) when writing queries. The reason has something...

  • RE: need help with a query

    To acheive this using only the data you've presented here - you will need 2 stored procedures the first is very simple...

    CREATE PROCEDURE dbo.GetHierarchy

     @Root int

    AS

    SET NOCOUNT ON

    December 15, 2004 at 11:49 am

    #534009

  • RE: HELP :: Operation must use an updateable query.

    Whenever I've experienced this problem in the past, it was because the Internet Guest account (IUSR_MACHINE), which is by default part of the "Everyone" group, does not have Write permissions on...

  • RE: Howto Save a large amount of text in SqlServer DB?

    SQL Query analyzer has a default setting which controls the output you see from a query. If you select Tools -> Options from the menu bar and then click on...

Viewing 4 posts - 1 through 4 (of 4 total)