Forum Replies Created

Viewing 15 posts - 226 through 240 (of 369 total)

  • RE: Float vs Decimal?

    Jeff Moden (6/26/2008)


    JohnG (6/26/2008)


    For financial systems, accuracy is paramount.

    So I'd use DECIMAL

    And, that is precisely why I'd use float instead... but, whatever... it's really hard to convince people even with...

  • RE: Float vs Decimal?

    Having worked on a financial system in the early 90's where we were computing gain/loss per share per day it got quite interesting with the precision factor. In particular...

  • RE: Duplicate identification

    The solution actually came from JohnG, and I've learned something too

    Glad your issue is solved

    - Andras

    I can't take credit for the actual solution. I'm just re-providing something that...

  • RE: T-SQL CONTAINS

    I don't see why the data is split between the two tables. It would be easier if they were both in the same table. You would have only...

  • RE: Duplicate identification

    Also knowing Oracle, I do wish that there was a ROWID equivalent in SQL Server. I'm also aware that it is used in "finding duplicate" queries.

    In SQL Server 2005...

  • RE: Hierarchal query

    Yes, as it has been done before SQL Server supported the hierarchical CTE (WITH) syntax.

    If however, your looking for the equivalent of Oracle's robust CONNECT BY, you're out of luck....

  • RE: Cursors

    I'm going to add my voice re: sp_describe_cursor_columns being a correct answer.

    Granted, it will return a number of rows which can be counted up, but that number is the number...

  • RE: WAITFOR

    I somewhat disagree that a TIMEOUT can be used to end a WAITFOR. It cannot be used independently and is only an optional modifier of the Service Broker message.

  • RE: SQL 2005 SP2 Fixed Version

    The "corrected" SP2 can also be labeled 3050 or 3054 depending upon what version was installed and then patched.

    I installed the original SP2 and then applied the fix issued immediately...

  • RE: FREETEXTTABLE multiple words query

    I strongly suggest that you use CONTAINS vs. FREETEXT in order to have better control over the search syntax.

  • RE: FULL TEXT query - specifying multiple words to search using variable

    Several things (from experience).

    1. Note that the CONTAINS function can utilize a variable. See the BOL. So you can build the search string in your application and then...

  • RE: Is a Temporary Table Really Necessary?

    Matt Whitfield (5/30/2008)


    And, basically, from a performance standpoint (which is where I was coming from in the first place), it will make as much difference as trying to stop a...

  • RE: Is a Temporary Table Really Necessary?

    PK - can't see it making much difference at all.

    Again, a typical "off the cuff" remark without thinking. I'm not saying ALL the time. One thing that a...

  • RE: osql script run as a .bat file

    Since this is SQL Server 2005, you should be using SQLCMD vs. OSQL. OSQL is obsolete.

  • RE: Is a Temporary Table Really Necessary?

    jmapledoram (5/30/2008)


    "...may cause performance issues due to the locking of the tempdb while the temporary table is being created"

    Is it possible to use table hints to alleviate this issue?

    The lock...

Viewing 15 posts - 226 through 240 (of 369 total)