Forum Replies Created

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

  • RE: Weird Sorting based on csv requirement

    Arjun Sivadasan (8/30/2010)


    I can't use batch processing as I need the entire set of recordids at one go. This is only a small part of the query and I have...

  • RE: Try...Catch not catching

    Brandie Tarvin (8/30/2010)


    Drew, the code author had no specific transactions within the TRY block. He's treating the TRY as all one transaction. It should be an All or Nothing proposition....

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

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

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

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

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

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

  • RE: Concatinate the String with in single row

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

    Drew

  • 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

  • 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

    ...

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

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

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

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

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