Forum Replies Created

Viewing 15 posts - 3,901 through 3,915 (of 4,085 total)

  • RE: Try...Catch not catching

    Your pseudo-code doesn't have an explicit transaction defined and you didn't mention whether you had changed your transaction management mode, so I'm assuming that it's using the default which is...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Weird Sorting based on csv requirement

    WayneS (8/27/2010)


    drew.allen (8/27/2010)


    You may want to SET ROWCOUNT instead of using a TOP PERCENT.

    SET ROWCOUNT is on the deprecated list. Use TOP (n) instead.

    I only suggested SET ROWCOUNT because I...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Weird Sorting based on csv requirement

    Actually, I was thinking about this last night, and because of the number of records you may want to do batch the processing. Here's one example. You would...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Weird Sorting based on csv requirement

    I tend to use FOR XML to concatenate values together. In some cases, you can also use the quirky update.

    Here is the FOR XML version.

    if object_id('tempdb..#test') is not null...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Aging Calculation for Items, Based on Status

    If you want to return fields that you don't want to group on, a CTE with Row_Number() is often a good approach.

    I changed your Table to a Table variable, but...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Missing sequence number

    SwePeso (8/25/2010)


    DECLARE@Sample TABLE

    (

    ID INT NOT NULL

    )

    INSERT@Sample

    SELECT 1 UNION ALL

    SELECT 2 UNION ALL

    SELECT 3 UNION ALL

    SELECT 4 UNION ALL

    SELECT 6 UNION ALL

    SELECT 7 UNION ALL

    SELECT 9 UNION ALL

    SELECT11

    -- Get the missing...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Concatinate the String with in single row

    The Stuff() formula is used to get rid of the extra comma.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Advanced string search.....

    I've never used full-text search, but I think that it has the capabilities that you are looking for. It's certainly a good place to start.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Julian Date Conversion Function Issue

    Shorter is not always simpler. If you're going for shortest, then this is much more elegant.

    SELECT DateAdd(Day

    , Substring(@Source, 5, 3) - 1

    ...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Julian Date Conversion Function Issue

    You're returning a varchar field. Is there some reason that you don't want to return a datetime field?

    When you assign your datetime field to your varchar field, you don't...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Problem with a join.....

    Just because environment_key is the only field that the three have in common doesn't mean that's the field that you want to join on. All of my tables have...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Feeding different parameters to a variable

    Chris Morris-439714 (8/18/2010)


    WHERE PartitionSize IN (1, Seq*2, Seq*2-1) -- < changed 3rd param here

    Cheers

    ChrisM

    This makes it seem like 1 is a special case when it's actually an exemplar of...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: problem in select query

    khurram sultan (8/19/2010)


    SELECT

    Tb_item.Item_part_number ,

    Tb_item.item_description,

    (SELECT TOP 1 ISNULL(Stock, 0) FROM Tb_Item_Cost_Ledger WHERE (ItemId = Tb_Item.CoA_ID) AND (Vdate <= '20100101') ORDER BY Vdate DESC) as Stock

    FROM ...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: sql trigger using cte - need help

    Eugene Elutin (8/17/2010)


    Could you please advise how many records you are expecting to be inserted into this table at-once (eg. using INSERT ... SELECT...type of queries).

    Will it be one-by-one...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: sql trigger using cte - need help

    In looking over your trigger again, I noticed a couple of things. Since you declare your variable as varchar, it only holds the last value when you set the...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

Viewing 15 posts - 3,901 through 3,915 (of 4,085 total)