Forum Replies Created

Viewing 15 posts - 21,991 through 22,005 (of 22,197 total)

  • RE: Putting Unit Tests to Work

    Now we're both learning. I never noticed that before either.

  • RE: Putting Unit Tests to Work

    Thank you.

    Yeah, I've noticed the same thing. When a line of code extends past the edge of the screen it shoots ALL the text out there too. It does make things...

  • RE: Query execution time

    I agree. Best measure is either to use the STATISTICS TIME or Profiler.

    Interesting point, don't use both because you'll get confused. We found that there are small differences between the...

  • RE: Query execution time

    What you usually see in the STATISTICS is the time on the server. It doesn't include time to move the data to your machine or time to display the graphics....

  • RE: Programmatically generate script for an SQl object

    2005 uses SMO.

  • RE: The Effect of NOLOCK on Performance

    Several people have commented that they use NOLOCk or setting the isolation level because they're in a read only environment. Have any of them considered setting their database to read...

  • RE: searc engine query

    Just an idea. Buy vs. Build always has trade-offs in either direction.

    There are other text indexing products out there. Shop around.

  • RE: Question about Where clause

    Is there an INNER JOIN involved to arrive at the data being selected. Join criteria is evaluated prior to the WHERE clause and you can sometimes move things from the...

  • RE: searc engine query

    If you're going for cheap, then you just need to set up full text indexing that comes with SQL Server 2005. Otherwise, I found this information on the Google site:

  • RE: Those cursed cursors

    Are you kidding? Set logic is bloody difficult. I have a hard time wrapping my brain around it almost daily. I just know that I have to take the approach...

  • RE: searc engine query

    Just to start with, no:

    SELECT * FROM ... LIKE 'Asp.net%'

    will only find data that is starts with Asp.net. If you want to search in the middle of a string you...

  • RE: Those cursed cursors

    It's not so much the database that's set oriented, although that's a big part of the issue. It's that TSQL is set oriented. Especially 2005 with common table expressions &...

  • RE: Constraint Multiple Columns: How To

    I agree with Ms. Shaw. Who wouldn't. You may also want to consider using a unique constraint:

    ALTER TABLE [x]

    ADD CONSTRAINT [y]

    UNIQUE NONCLUSTERED ([emailaddress],[password]) ON [PRIMARY]

    Then you get the index suggested...

  • RE: Programmatically generate script for an SQl object

    Now that's sweet. I had not known of this one prior to today. Thanks for posting it.

  • RE: LOOPS in stored procedure

    Nice choice. Beats a cursor in most situations.

Viewing 15 posts - 21,991 through 22,005 (of 22,197 total)