Forum Replies Created

Viewing 15 posts - 58,006 through 58,020 (of 59,066 total)

  • RE: SP to encrypt column of a Sql server 2000 table

    I don't have one but, rumor has it, that there are encryption tools on the Software Developers Kit disk that comes with SQL Server.  Without a doubt, someone will post...

  • RE: Temp Tables in SQL Server

    Good point... but you have to know what the Recovery Model is set to.  If it's set to FULL, even SELECT INTO is logged.  Again, don't take my word for...

  • RE: Temp Tables in SQL Server

    Never mind... here's the answer to that last question in my previous post...

    http://support.microsoft.com/kb/153441/EN-US/

    ... and make sure that you read the part that says ...

    NOTE: This problem does not...

  • RE: Temp Tables in SQL Server

    I appologize if I repeat some of the previous posts but I think they might be worth repeating... and I believe John Marks referenced the same URL that I do...

  • RE: Decimal/float/etc.

    I see why people come to the conclusion that you must use FLOAT as an input to functions... what people should say on funtions is that you must not use...

  • RE: Decimal/float/etc.

    Excellent reference, GP... though I'm not sure what you meant by "you have to use Float if your application need math functions".  If you meant that you are inherently using...

  • RE: Deriving financial years

    Nope... massive deoderant failure on my part 

  • RE: problem using MAX on date

    Sure, Mick... Sorry for the previous all too brief post...

    First, let me tell you that the others are absolutely correct... SMALLDATETIME is rounded to the nearest minute and you should...

  • RE: Deriving financial years

    Sorry, Tim... poor choice of words on my part.

  • RE: Dates

    You are correct... cannot attach files... nicely formatted code.  Welcome aboard!

  • RE: problem using MAX on date

    It's things like this that make me appreciate a good old fashioned IDENTITY column...

  • RE: Decimal/float/etc.

    PW beat me to it... don't use float for anything, if you can help it.  It's one of those "approximation" data types that are based on binary math. 

    Now, what...

  • RE: Deriving financial years

    I guess I don't understand why no-one liked Ryan's first solution with the -275 thingy (although I'm not sure it will withstand a Leap Year).  It was very simple and...

  • RE: Longitude Latitude Radius

    You could easily turn this into a stored procedure or perhaps a table function...

    --===== Define the input parameters

    DECLARE @PropertyIDtoFind INT

    DECLARE @MileageLimit DECIMAL(7,2)

        SET @PropertyIDtoFind = 183297

        SET...

  • RE: Rewriting an update statement without using a cursor

    Must be a nasty copy'n'paste error... The code doesn't work as posted...

    GO must be the only thing on a line...

    Every /* must be match with an */...

    ...

    However, I agree...

Viewing 15 posts - 58,006 through 58,020 (of 59,066 total)