Forum Replies Created

Viewing 15 posts - 21,946 through 21,960 (of 22,194 total)

  • RE: Multiple Result Sets

    That would eliminate any chance of holding locks, but it will put more of a load on tempdb since table variables are stored there.

    I'm not really looking to radically...

  • RE: Best Practices SQL 2005

    I doubt this will give you everything you might need, but it will certainly get you started. These are Microsoft's Best Practices as implemented by their own consultants.

    http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/default.mspx

  • RE: The SQL Server 2005 XML Temptress

    We probably could use BCP and realize some performance improvements, definately. However, we're finding the performance is more than adequate, we've got it in Production as well as having tested...

  • RE: Can anyone pls explain me??

    From this, you should try adding an index to the temp table, [#ProducedHour]. The first one I'd try, and you will need to test anything you do, would be to...

  • RE: Can anyone pls explain me??

    #6Df65D3E is probably a statistic added to one of the tables because an index is needed for the query you're running and that index isn't there. The worktables are usually...

  • RE: Who Trains You?

    Regarding books, if you're interested in a little work to get the book for free, the book review SIG over at SQL PASS will have a host of new books...

  • RE: Test data generation tool?

    I've been pretty disatisfied with all the Quest products that we have licensed with two exceptions. Quest Data Factory and Quest Benchmark Factory are darned good products. I'm using the...

  • RE: The Religious Wars

    Steve, you are absolutely wrong on this one... depending.

  • RE: Putting Unit Tests to Work

    I was just going to look this up and I saw your response. Thanks for the assist.

    I'll look into updating the article, but if I can't, at least your comments...

  • RE: Calculating sizes(disk usage) on different levels

    No, unfortunately, you're probably after the right stuff hitting the system tables. There just isn't as much information available in 2000 as is presented in 2005. You should post in...

  • RE: Calculating sizes(disk usage) on different levels

    Since you're working in 2005, there are reports and dynamic management views for getting this information. For example, the report Disk Usage by Table returned this data from AdventureWorks:

  • RE: SET ANSI_PADDING in stored procedure and Internal Query Processor Error

    I guess I'm confused by the problem. When I ran the test as presented I got the error you described, but I got the same error even when I commented...

  • RE: Putting Unit Tests to Work

    I think you're correct on my errors in the article. Thanks for the input. I'm not sure if Steve will let me do an update, but I'll check.

    I suspect it's...

  • RE: Performance gap between two seemingly identical databases

    What about scans & I/O? Are they on identical servers? What about weirder stuff like tempdb usage or log backups or other processes causing locks, etc.

    Still, the difference between...

  • RE: Problem in Numbering rows...

    I experimented and came up with this:

    USE

    tempdb;

    IF EXISTS (SELECT *...

  • Viewing 15 posts - 21,946 through 21,960 (of 22,194 total)