Forum Replies Created

Viewing 15 posts - 52,501 through 52,515 (of 59,070 total)

  • RE: CLR and UDF

    Heh... as you said... "Well!!!!"

    What might be even more interesting is to find out what the CLR does "AAAAAAND" why you think you need a CLR to do...

  • RE: how to show row wise data columnwise data

    Since you didn't say what the datatype of the CSV column is, and since you said 2005", I can only assume the "worst". This would run much faster with...

  • RE: The switch to Oracle

    So OK let's continue. Back to lengths. I'm not so concerned about limit of 30 symbols per identifier however, I'm quite amazed by following math in SQL Server:

    select len(a), len(b),...

  • RE: Show data upto 2 decimal places but with exact values

    You can also use the "3rd operand" of round which identifies whether the number should be rounded or truncated (as you've asked for)... the information for the 3rd operand is...

  • RE: The switch to Oracle

    Heh... and I damned sure wouldn't have actually written the performance enabled code the way I did... I did that just to make cuff's match collar in the code performance...

  • RE: The switch to Oracle

    Heh... I did look at the "Example C" code you referenced... guess that proves that even people who write the documentation can be card carrying members of the Darwin Award......

  • RE: The switch to Oracle

    You've exemplified exactly what I was talking about, Gints... doesn't really matter what people think of one or the other, they are very different and anyone who thinks that the...

  • RE: Parse a name field

    The LEN failure is because you are missing a couple of right parenthesis in the code line.

    Also, is there only 1 name per row or do they look like something...

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems in SS 2k/2k5

    Heh... I knew it would be YOU, Matt... after all the testing you did for/with me on the "other" CLR's, I should have just asked "Hey Matt... you wanna try...

  • RE: code to find the latest file in a folder and load data to a table

    Hi Alicia...

    Since you're trying to "export" the file from an .xls file to a table, you'll need to follow a couple of "rules" about the format of the .xls file....

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems in SS 2k/2k5

    Christopher Ford (2/15/2008)


    So I says to myself, bah, table variable...you can do it without a table variable!

    ... for an interesting exercise, please run this...or better yet, don't run this unless...

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems in SS 2k/2k5

    Thanks for joining the thread, Frank... just curious... you posted the following... and said it takes 2 seconds on your machine...

    Out of curiousity, if we were to grab the current...

  • RE: Help with Cursor

    I get what you want to do... but, I'm with John... I need more info, please...

    Also, what do you mean by "unitil No ID's are left"? Are you saying...

  • RE: Sequential numbering issue

    --===== Create a test table with data

    -- THIS IS NOT PART OF THE SOLUTION

    DECLARE @YourTable TABLE (DocNo VARCHAR(20),LiNum INT)

    INSERT INTO @YourTable (DocNo,LiNum)

    SELECT 'ZC12345',1...

  • RE: Help with formating

    So, maybe write some code that writes code for you?

    Also, you can set the results in the text mode to use the TAB character to separate columns to make the...

Viewing 15 posts - 52,501 through 52,515 (of 59,070 total)