Forum Replies Created

Viewing 15 posts - 2,251 through 2,265 (of 3,658 total)

  • RE: Introduction to Bitmasking in SQL Server 2005

    What do you get when you cross a sheep with a bee?

    Baa Hum Bug

  • RE: Introduction to Bitmasking in SQL Server 2005

    I've got to put up a Christmas tree, swear at the lights, murder a few carols and fight with relatives, but I will give it a go after Christmas and...

  • RE: Introduction to Bitmasking in SQL Server 2005

    In 192.168.2.10 the octets would be as follows

    1. 192
    2. 168
    3. 2
    4. 10

    Would I be correct in thinking that by using the most changing octet SQL Server is most likely to think that the...

  • RE: Introduction to Bitmasking in SQL Server 2005

    I don't think that there is any easy answer.

    One of the examples in the "Update your development skills to SQL2005" course uses a CLR datatype to hold an IP address.

    I...

  • RE: Introduction to Bitmasking in SQL Server 2005

    Thanks, but the WHERE Oct_1 IN () clause doesn't really provide an easy solution.

    I can't remember the specific IP address range for the Google ROBOT but similar exclusions look for...

  • RE: Introduction to Bitmasking in SQL Server 2005

    Our data analysts wanted to build a model that excluded IP addresses in a pretty obscure range

    The problem was coming up with a simple query that would work on...

  • RE: Introduction to Bitmasking in SQL Server 2005

    The IP Address problem is one that I am facing.

    When stored as a string it is a VARCHAR(15), it is human readable but difficult to do range searches.

    When stored as...

  • RE: TinyInt, SmallInt, Int and BigInt

    I was in two minds as to whether to submit this article to SSC. My concern was that it was a little simplistic. Given David Vaughan's response suggests...

  • RE: TinyInt, SmallInt, Int and BigInt

    Along time ago I came across something that said that VB always stored integers as 32 bit values regardless of whether they were Byte, Short, or Long (long in those...

  • RE: Personal Laptop

    I think this sort of thing can fundamentally affect the employee/employer relationship.

    As an employee I have a duty of care for company resources. An employer has a duty of...

  • RE: Performance Effects of NOCOUNT

    Sorry Jon, but it is a common use case in a sales order system.

    You are right that the example was contrived. I did say in the article that it...

  • RE: Performance Effects of NOCOUNT

    I use SET NOCOUNT ON wherever possible. There seems little point gain in stored procedures only to lose in triggers.

  • RE: Performance Effects of NOCOUNT

    Back in time of ADO (NOT .Net) the returned message sometimes was treated as a Recordset...

    I didn't come across this problem with ADO but at one place I worked they...

  • RE: A Bad, Bad World

    It doesn't matter what the system is there will always be someone who tries (and suceeds) to crack it.

    In the UK there is a government database that has been set...

  • RE: Row-By-Row Processing Without Cursor

    I have seen cursors out-perform a non-cursor method of looping through records.

    The key is knowing exactly when a cursor is necessary or alternatively, when some nifty set based SQL will...

Viewing 15 posts - 2,251 through 2,265 (of 3,658 total)