Forum Replies Created

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

  • RE: Any ideas why this query is running so slow?

    I've never used a composite index actually.  What would be the result if I had separate indexes and then a composite index too?

    Thanks!

    James

  • RE: Any ideas why this query is running so slow?

    Great recommendations! 

    The only thing that I couldn't implement is this (Error: Incorrect sytax near the keyword as):

    -- Derived table to build full name for each id

    INNER JOIN

     (SELECT    id,...

  • RE: Tricky Reporting Display

    I'm not sure this will do the trick, because there are multiple products and then multiple parts to each product. These products all need to show with there parts under...

  • RE: Replacing /(forward slash) with a -(dash)

    That worked perfectly. Thanks Sushila!

  • RE: Replacing /(forward slash) with a -(dash)

    SELECT REPLACE(child2, char(47), char(45)) AS Expr2

    from cs_ArticleCategories

    where id = 637

    This displayed:

    CSU-DSU

    But when I ran this:

    select child2 from cs_ArticleCategories

    where child2 LIKE '%/%' and id = 637

    It displayed:

    CSU/DSU

    How do I really update...

  • RE: Replacing /(forward slash) with a -(dash)

    I run this:

    SELECT REPLACE(child2, char(47), char(45)) AS Expr2

    from cs_ArticleCategories

    and this:

    SELECT REPLACE(child2, '/', '-') AS Expr2

    from cs_ArticleCategories

    Then I run this and I get results of child2 values that have a forward slash...

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